<style>
body {font-family: Arial, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 700px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
</style>
<script>
jQuery('body').prepend(
'<div id="myModal" class="modal">'
	+'<div class="modal-content">'
		+'<label style="font-size:1.5em !important;">Please fill in your Email and Phone no.</label><span class="close">&times;</span><br><br>'
		+'<form id="form_vote" name="form_vote"><input type="hidden" name="votepostid" id="votepostid" value="">'
		+'<input type="hidden" name="votetype" id="votetype" value="">'
		+'<label>Email: </label>'
		+'<input type="text" id="email" name="email">'
		+'<label>Phone No.: </label>'
		+'<input type="number" id="phone" name="phone">'
		+'<input type="button" name="it_epoll_survey-vote-button" id="it_epoll_survey-vote-button" value="Submit" onclick="submitvote();"></form>'
	+'</div>'
+'</div>');

var modal = document.getElementById("myModal");
var btn = document.getElementById("myBtn");
var span = document.getElementsByClassName("close")[0];

span.onclick = function() {
  modal.style.display = "none";
}

window.onclick = function(event) {
  if (event.target == modal) {
    modal.style.display = "none";
  }
}


window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_on').html('ON - Mohd Ifwat Mohd Ghazali');	
})


function voteon(a){
	modal.style.display = "block";
	jQuery('#votetype').val('on');
}

function submitvote(){
	votetype = jQuery('#votetype').val();
	if(votetype == 'on'){
		submitvoteon();
	}else if(votetype == 'os'){
		submitvoteos();
	}
}

function submitvoteon(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownon').show();
		jQuery('.voteon').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownon').hide();
			jQuery('.voteon').show();
			
		  } else {
			jQuery('#countdownon').html(timeleft + " seconds remaining");
		   // document.getElementById("countdownon").innerHTML = timeleft + " seconds remaining";
		  }
		  timeleft -= 1;
		}, 1000);
			
			nama = jQuery('.nama').html();
			var form = jQuery('#form_vote')[0];
			var formData = new FormData(form);
			formData.append('action', 'rwvoting_submiton');
			formData.append('nama', 'Mohd Ifwat Mohd Ghazali');
			
				jQuery.ajax({
					type: "POST",
					url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
					data: formData,
					async: false,
					cache: false,
					contentType: false,
					enctype: 'multipart/form-data',
					processData: false,
					success: function (data) {
						var json = JSON.parse(data);
						percentage = json.percentage;
						msg_total = json.msg_total;
						
						jQuery('.percenton').html(percentage+'%');
						jQuery('.onwidth').css('width',percentage+'%');
						
						if(msg_total == 'Full'){
							alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
						}
					},
					error: function (data) {
						//console.log("fail: " + data);
					}
				});
	}
}


jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percenton&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percenton').html(result+'%');
		jQuery('.onwidth').css('width',result+'%');
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script><script>
window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_os').html('OS - Mohd Ifwat Mohd Ghazali');
})

function voteos(a){
	modal.style.display = "block";
		jQuery('#votetype').val('os');
}

function submitvoteos(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownos').show();
		jQuery('.voteos').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownos').hide();
			jQuery('.voteos').show();
			
		  } else {
			jQuery('#countdownos').html(timeleft + " seconds remaining");
		  }
		  timeleft -= 1;
		}, 1000);
			
		nama = jQuery('.nama').html();
		var form = jQuery('#form_vote')[0];
		var formData = new FormData(form);
		formData.append('action', 'rwvoting_submitos');
		formData.append('nama', 'Mohd Ifwat Mohd Ghazali');

		jQuery.ajax({
			type: "POST",
			url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
			data: formData,
			async: false,
			cache: false,
			contentType: false,
			enctype: 'multipart/form-data',
			processData: false,
			success: function (data) {
				var json = JSON.parse(data);
				percentage = json.percentage;
				msg_total = json.msg_total;
				
				jQuery('.percentos').html(percentage+'%');
				jQuery('.oswidth').css('width',percentage+'%');
				
				if(msg_total == 'Full'){
					alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
				}
			},
			error: function (data) {
				//console.log("fail: " + data);
			}
		});
	}
}

jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percentos&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percentos').html(result+'%');
		jQuery('.oswidth').css('width',result+'%');
		
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script>{"id":1133,"date":"2021-09-22T08:17:18","date_gmt":"2021-09-22T00:17:18","guid":{"rendered":"https:\/\/bms.awan.la\/?p=1133"},"modified":"2022-01-28T12:18:50","modified_gmt":"2022-01-28T04:18:50","slug":"mohd-ifwat-mohd-ghazali","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=1133","title":{"rendered":"Mohd Ifwat Mohd Ghazali"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-ywwv7h-3b25b8e2209e6ae3cd54bd76457288ab main_color avia-section-default avia-no-border-styling  avia-builder-el-0  el_before_av_section  avia-builder-el-first  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><main  role=\"main\" itemprop=\"mainContentOfPage\"  class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-1133'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-yaljgd-bdd98dde290a3caec19a6a11c3e4c162\">\n#top .av-special-heading.av-yaljgd-bdd98dde290a3caec19a6a11c3e4c162{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-yaljgd-bdd98dde290a3caec19a6a11c3e4c162 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-yaljgd-bdd98dde290a3caec19a6a11c3e4c162 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-yaljgd-bdd98dde290a3caec19a6a11c3e4c162 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-yaljgd-bdd98dde290a3caec19a6a11c3e4c162 av-special-heading-h2 custom-color-heading  avia-builder-el-1  el_before_av_one_third  avia-builder-el-first '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >PESERTA<\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-vpr7dp-0f8e0f7e8b11c75acc3799dbdf9e8f56\">\n.flex_column.av-vpr7dp-0f8e0f7e8b11c75acc3799dbdf9e8f56{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-vpr7dp-0f8e0f7e8b11c75acc3799dbdf9e8f56 av_one_third  avia-builder-el-2  el_after_av_heading  el_before_av_two_third  first flex_column_div av-animated-generic pop-up av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-v686ql-ec85a1df885f137d46f46fb8537b9d18\">\n#top .hr.hr-invisible.av-v686ql-ec85a1df885f137d46f46fb8537b9d18{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-v686ql-ec85a1df885f137d46f46fb8537b9d18 hr-invisible  avia-builder-el-3  el_before_av_iconlist  avia-builder-el-first '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div><br \/>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-ktuqzhls-edfe4ad440fba379642e72a19a012072\">\n#top .avia-icon-list-container.av-ktuqzhls-edfe4ad440fba379642e72a19a012072 .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#635ec6;\n}\n#top .avia-icon-list-container.av-ktuqzhls-edfe4ad440fba379642e72a19a012072 .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-ktuqzhls-edfe4ad440fba379642e72a19a012072  avia-builder-el-4  el_after_av_hr  avia-builder-el-last '><ul class='avia-icon-list avia_animate_when_almost_visible avia-icon-list-left av-iconlist-big av-ktuqzhls-edfe4ad440fba379642e72a19a012072 avia-iconlist-animate'>\n<li><div class='iconlist_icon av-ktuqysun-c1edb293d6577e881be99d759e08c73c avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue80a' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: NAMA: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >NAMA: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">Mohd Ifwat Mohd Ghazali\u00a0<\/span><\/p>\n<p><span class=\"nama\"> Muhammad Sukor Romat\u00a0 \u00a0<\/span><\/p>\n<p><span class=\"nama\">Noor Azzanny Jamaludin<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-ktuqz3by-98f334efd6932e0b465e242cda562dd7 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue8b1' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: LOKASI: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >LOKASI: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">Negeri Sembilan<br \/>\n<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-ktuqzeyj-6cc1e32977654eb47dec142e32921029 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue805' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: EMEL:\"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >EMEL:<\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">ifwat.ghazali@usim.edu.my<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kvnalqib-de250344d6afac554d2d9f60de98b3f0 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue840' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: BIODATA PESERTA:\"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >BIODATA PESERTA:<\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/cv-mohd-ifwat-mohd-ghazali-67516-2174.pdf\" target=\"_blank\" rel=\"noopener\">Mohd Ifwat Mohd Ghazali<\/a><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<\/ul><\/div><\/p><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-sqsojx-2d29845661cc2590fe83adad6c539042\">\n.flex_column.av-sqsojx-2d29845661cc2590fe83adad6c539042{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-sqsojx-2d29845661cc2590fe83adad6c539042 av_two_third  avia-builder-el-5  el_after_av_one_third  avia-builder-el-last  flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kv6axmpj-1669fe23b4ba87d5a3aff96437684433\">\n.avia-image-container.av-kv6axmpj-1669fe23b4ba87d5a3aff96437684433 img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-kv6axmpj-1669fe23b4ba87d5a3aff96437684433 .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-kv6axmpj-1669fe23b4ba87d5a3aff96437684433 av-styling- avia-align-center  avia-builder-el-6  avia-builder-el-no-sibling '   itemprop=\"image\" itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/ImageObject\" ><div class=\"avia-image-container-inner\"><div class=\"avia-image-overlay-wrap\"><img decoding=\"async\" fetchpriority=\"high\" class='wp-image-5202 avia-img-lazy-loading-not-5202 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali-scaled.jpg\" alt='' title='Mohd Ifwat Mohd Ghazali'  height=\"1339\" width=\"2560\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali-scaled.jpg 2560w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali-300x157.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali-1030x539.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali-768x402.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali-1536x803.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali-2048x1071.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali-1500x785.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali-705x369.jpg 705w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" \/><\/div><\/div><\/div><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-r128u5-f886478cd1492c903237ecd74aa2a198 main_color avia-section-default avia-no-border-styling  avia-builder-el-7  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-1133'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-oz8x99-6846e7a60c5ea815a332dc0c4806e65a\">\n.flex_column.av-oz8x99-6846e7a60c5ea815a332dc0c4806e65a{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-oz8x99-6846e7a60c5ea815a332dc0c4806e65a av_one_full  avia-builder-el-8  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-o7qhe5-c436d21033458d48725134ce8b5892e4\">\n#top .av-special-heading.av-o7qhe5-c436d21033458d48725134ce8b5892e4{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-o7qhe5-c436d21033458d48725134ce8b5892e4 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-o7qhe5-c436d21033458d48725134ce8b5892e4 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-o7qhe5-c436d21033458d48725134ce8b5892e4 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-o7qhe5-c436d21033458d48725134ce8b5892e4 av-special-heading-h2 custom-color-heading  avia-builder-el-9  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >CADANGAN <span style=\"color: #ffffff;\">KARYA<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lw8v8d-c7efd39f891f4851e6991c950178f480\">\n#top .hr.hr-invisible.av-lw8v8d-c7efd39f891f4851e6991c950178f480{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-lw8v8d-c7efd39f891f4851e6991c950178f480 hr-invisible  avia-builder-el-10  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-ktur1k56-03ab7fa6c508d86dd4833204cd485ab4 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\">PENGENALAN<\/p>\n<p style=\"text-align: justify;\">Pendedahan terhadap cabaran yang dialami oleh golongan yang berkelainan upaya amat sukar untuk kita dengar khususnya di Malaysia. Dengan menggunakan teknologi imbasan 3D (3D scanner) dan pencetakan 3D (3D printer), kami menghasilkan beberapa modul dan karya simulasi pergerakan solat. Menerusi penghasilan set modul ini, diharap mampu membina alternatif baru bagi golongan kelainan upaya untuk mempelajari kaedah mendirikan solat. Selain itu juga, projek ini bertujuan untuk membuka mata serta perspektif masyarakat tentang penggunaan seni khususnya melalul braille art dan juga sensory art sebagai salah satu alatan pendidikan khususnya bagi mereka yang berkelainan upaya.<\/p>\n<p style=\"text-align: justify;\">OBJEKTIF<\/p>\n<p style=\"text-align: justify;\">Untuk memberi pendidikan kepada golongan kelainan upaya tentang kaedah melaksanakan ibadah solat dengan tertib dan betul. Untuk merangsang deria sentuhan menggunakan objek 3 dimensi (3D)<\/p>\n<p style=\"text-align: justify;\">RASIONAL KARYA<\/p>\n<p style=\"text-align: justify;\">Menerusi penghasilan karya ini diharap mampu membantu golongan berkelainan upaya khususnya yang mempunyai masalah penglihatan dalam mempelajari kaedah solat yang betul dengan mengunakan beberapa modul yang dihasilkan menggunakan cetakan 3D. Diharap dengan penghasilan karya modul 3D dapat digunakan bagi membantu serta memudahkan golongan ini mengetahui pergerakan ketika menjalani ibadah solat<\/p>\n<p style=\"text-align: justify;\">PENERANGAN KARYA<\/p>\n<p style=\"text-align: justify;\">a PENELITIAN IDEA<\/p>\n<p style=\"text-align: justify;\">Idea ini diinspirasi dari alat pendidikan golongan kelainan upaya yang menggunakan teknik Braille. Teknik braille menggunakan deria sentuhan terhadap objek untuk membantu golongan kurang upaya membaca dan menulis. Struktur penyusunan objek mengikut posisi tertentu dapat dilihat sebagai solusi terhadap masalah yang dihadapi golongan tersebut.<\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-kxy9i517-dd28e5e7b10cb3c48db9d747a3b56021 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\">b. PENYATAAN KARYA<\/p>\n<p style=\"text-align: justify;\">Posisi tubuh yang telah diimbas dan dicetak akan disusun mengikut turutan cara solat secara tertib. Audiens yang akan dipanggil terdiri daripada anggota ahli Penubuhan Ibnu Ummi Maktum Research Centre (UMMI)&#8217; aitu merupakan sebuah pusat penyelidikan untuk golongan berkelainan upaya berteraskan pendekatan ilmu Naqli dan Aqli yang mana bertujuan untuk memenuhi tuntutan fardhu ain. Audiens yang terbabit di dalam projek ini terdiri daripada audiens lelaki berkelainan upaya yang mengalami masalah penglihatan. Saiz figurs ideal bagi golongan kelainan upaya yang mempunyai masalah kesihatan berukuran dalam skala 30om dicetak untuk merangsang pemahaman terhadap deria sentuhan melalui ekspresi pengamatan dan rakaman melalul kamera digital. Setiap posisi figura yang dicetak disertakan sekali dengan penerangan terperinci dengan menggunakan teknik cetakan Braille. Menerusi hasil karya ini diharap bukan sahaja mampu mendidik bahkan member input pendidikan secara langsung kepada golongan berkelainan upaya<\/p>\n<p style=\"text-align: justify;\">C. KARYA DAN ARTIS RUJUKAN<\/p>\n<p style=\"text-align: justify;\">Bagi menjayakan projek ini, kami merujuk kepada hasil isu yang pernah terjadi kepada golongan berkelaianan upaya. Sebagai contoh, pengalaman daripada seorang ibu yang mempunyai masalah penglihatan untuk melihat anak di dalam kandungannya.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-5196\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/ifwat.png\" alt=\"\" width=\"1166\" height=\"658\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/ifwat.png 1166w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/ifwat-300x169.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/ifwat-1030x581.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/ifwat-768x433.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/ifwat-705x398.png 705w\" sizes=\"(max-width: 1166px) 100vw, 1166px\" \/><\/p>\n<p>Tatiana Guerra menyentuh patung bayi beliau yang dicetak menerusi percetakan 3D<\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-2ljfq5-6f6b79b7a52171553dab31b6ec33c2b8 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><iframe style=\"width: 100%; height: 500px;\" src=\"https:\/\/docs.google.com\/gview?url=https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Kertas-Kerja-Cadangan-BMS-2021_CELIKSOLAT_2.0.pdf&amp;embedded=true\" frameborder=\"0\"><\/iframe><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Kertas-Kerja-Cadangan-BMS-2021_CELIKSOLAT_2.0.pdf\">Kertas Kerja Cadangan BMS 2021 &#8211; CELIKSOLAT_2.0<\/a><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-kicj0t-7f2b88cbb6200ab08067be903943b468 main_color avia-section-default avia-no-border-styling  avia-builder-el-14  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-1133'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-jcd1fx-2700cca643a0877dbcb91e0f5f5b2841\">\n.flex_column.av-jcd1fx-2700cca643a0877dbcb91e0f5f5b2841{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-jcd1fx-2700cca643a0877dbcb91e0f5f5b2841 av_one_full  avia-builder-el-15  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-hpn21p-0d0c87d9d180f0d51dc8e361fbd901c5\">\n#top .av-special-heading.av-hpn21p-0d0c87d9d180f0d51dc8e361fbd901c5{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-hpn21p-0d0c87d9d180f0d51dc8e361fbd901c5 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-hpn21p-0d0c87d9d180f0d51dc8e361fbd901c5 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-hpn21p-0d0c87d9d180f0d51dc8e361fbd901c5 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-hpn21p-0d0c87d9d180f0d51dc8e361fbd901c5 av-special-heading-h2 custom-color-heading  avia-builder-el-16  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >MANUAL <span style=\"color: #ffffff;\">PEMASANGAN<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-gf4vzh-af99bd13725206325b13612454b9734a\">\n#top .hr.hr-invisible.av-gf4vzh-af99bd13725206325b13612454b9734a{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-gf4vzh-af99bd13725206325b13612454b9734a hr-invisible  avia-builder-el-17  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-ktur6iuk-f374afc5727982236b795254cc048001 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"size-large wp-image-1139 aligncenter\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-3-806x1030.jpg\" alt=\"\" width=\"806\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-3-806x1030.jpg 806w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-3-235x300.jpg 235w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-3-768x982.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-3-1201x1536.jpg 1201w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-3-1602x2048.jpg 1602w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-3-1173x1500.jpg 1173w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-3-551x705.jpg 551w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-3-scaled.jpg 2002w\" sizes=\"(max-width: 806px) 100vw, 806px\" \/><\/p>\n<p><img decoding=\"async\" class=\"size-large wp-image-1140 aligncenter\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-4-1030x955.jpg\" alt=\"\" width=\"1030\" height=\"955\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-4-1030x955.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-4-300x278.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-4-768x712.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-4-1536x1425.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-4-1500x1391.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-4-705x654.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-4.jpg 1986w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p><img decoding=\"async\" class=\"size-large wp-image-1141 aligncenter\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-5-764x1030.jpg\" alt=\"\" width=\"764\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-5-764x1030.jpg 764w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-5-222x300.jpg 222w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-5-768x1036.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-5-1139x1536.jpg 1139w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-5-1112x1500.jpg 1112w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-5-523x705.jpg 523w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Manual-Pemasangan-5.jpg 1261w\" sizes=\"(max-width: 764px) 100vw, 764px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4'  class='avia-section av-dtwmd9-5678197caacd2d7efa96a4c9eb72aba0 main_color avia-section-default avia-no-border-styling  avia-builder-el-19  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-1133'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-cdf1od-0cf4ce318b490d3eab8b9a658c5adc17\">\n.flex_column.av-cdf1od-0cf4ce318b490d3eab8b9a658c5adc17{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-cdf1od-0cf4ce318b490d3eab8b9a658c5adc17 av_one_full  avia-builder-el-20  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-bb0svh-4c4963fafcc94067ab8b6ab11adab6a9\">\n#top .hr.hr-invisible.av-bb0svh-4c4963fafcc94067ab8b6ab11adab6a9{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-bb0svh-4c4963fafcc94067ab8b6ab11adab6a9 hr-invisible  avia-builder-el-21  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-ktur9i6c-596f396d3f4cf03d337c6e8940a481a2 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_5'  class='avia-section av-97dgr1-dce758f2c1842267889a6bc527e51471 main_color avia-section-default avia-no-border-styling  avia-builder-el-23  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-1133'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-7cazgd-8ade3b6f49519867c12fc4f08641e30a\">\n.flex_column.av-7cazgd-8ade3b6f49519867c12fc4f08641e30a{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-7cazgd-8ade3b6f49519867c12fc4f08641e30a av_one_full  avia-builder-el-24  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-55yze5-3907e4abccb19bc39ac52eb120b5c06a\">\n#top .av-special-heading.av-55yze5-3907e4abccb19bc39ac52eb120b5c06a{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-55yze5-3907e4abccb19bc39ac52eb120b5c06a .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-55yze5-3907e4abccb19bc39ac52eb120b5c06a .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-55yze5-3907e4abccb19bc39ac52eb120b5c06a .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-55yze5-3907e4abccb19bc39ac52eb120b5c06a av-special-heading-h2 custom-color-heading  avia-builder-el-25  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >.<span style=\"color: #ffffff;\"> .<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-emux9-9b03224e2cfe1a17e0aefb89e2c208c0\">\n#top .hr.hr-invisible.av-emux9-9b03224e2cfe1a17e0aefb89e2c208c0{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-emux9-9b03224e2cfe1a17e0aefb89e2c208c0 hr-invisible  avia-builder-el-26  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-1x6dnh-0a214f601e2670dcfec828393d47aea7 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_6'  class='avia-section av-5wfhil-da3f67e3ee6cf083c725cb678dfd321b main_color avia-section-default avia-no-border-styling  avia-builder-el-28  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-1133'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-3yvmml-e10f2e42e5eb89477c56abc14f655266\">\n.flex_column.av-3yvmml-e10f2e42e5eb89477c56abc14f655266{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-3yvmml-e10f2e42e5eb89477c56abc14f655266 av_one_full  avia-builder-el-29  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kxiladnm-91cc52a0350a4916fb26a49d4cb2ad7b\">\n#top .av-special-heading.av-kxiladnm-91cc52a0350a4916fb26a49d4cb2ad7b{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-kxiladnm-91cc52a0350a4916fb26a49d4cb2ad7b .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-kxiladnm-91cc52a0350a4916fb26a49d4cb2ad7b .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-kxiladnm-91cc52a0350a4916fb26a49d4cb2ad7b .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-kxiladnm-91cc52a0350a4916fb26a49d4cb2ad7b av-special-heading-h2 custom-color-heading  avia-builder-el-30  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KARYA<span style=\"color: #ffffff;\"> AKHIR<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-22ecml-1a97a73970ef658749815b3cb61768c7\">\n#top .hr.hr-invisible.av-22ecml-1a97a73970ef658749815b3cb61768c7{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-22ecml-1a97a73970ef658749815b3cb61768c7 hr-invisible  avia-builder-el-31  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-kxilce9i-eee3e7f24fc83bc7cfe5a6461a8aa599 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone size-large wp-image-3913\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639200425955-771x1030.jpg\" alt=\"\" width=\"771\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639200425955-771x1030.jpg 771w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639200425955-225x300.jpg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639200425955-768x1026.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639200425955-528x705.jpg 528w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639200425955.jpg 958w\" sizes=\"(max-width: 771px) 100vw, 771px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-3914\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639388161505-579x1030.jpg\" alt=\"\" width=\"579\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639388161505-579x1030.jpg 579w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639388161505-169x300.jpg 169w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639388161505-397x705.jpg 397w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/FB_IMG_1639388161505.jpg 648w\" sizes=\"(max-width: 579px) 100vw, 579px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-3915\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0039-771x1030.jpg\" alt=\"\" width=\"771\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0039-771x1030.jpg 771w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0039-225x300.jpg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0039-768x1026.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0039-528x705.jpg 528w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0039.jpg 958w\" sizes=\"(max-width: 771px) 100vw, 771px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-3916\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0041-1030x719.jpg\" alt=\"\" width=\"1030\" height=\"719\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0041-1030x719.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0041-300x210.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0041-768x536.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0041-705x492.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/IMG-20211130-WA0041.jpg 1280w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<\/div><\/section>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-ktura4b8-5aa8ba0df89110ac948b6c3ea3240823\">\n#top .av-special-heading.av-ktura4b8-5aa8ba0df89110ac948b6c3ea3240823{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-ktura4b8-5aa8ba0df89110ac948b6c3ea3240823 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-ktura4b8-5aa8ba0df89110ac948b6c3ea3240823 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-ktura4b8-5aa8ba0df89110ac948b6c3ea3240823 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-ktura4b8-5aa8ba0df89110ac948b6c3ea3240823 av-special-heading-h2 custom-color-heading  avia-builder-el-33  el_after_av_textblock  el_before_av_video '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >.<span style=\"color: #ffffff;\"> . <\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div>\n<div  class='avia-video av-kxilf65f-5b865c28aa228edd197a603f253c6bc1 avia-video-16-9 av-no-preview-image avia-video-load-always av-lazyload-immediate av-lazyload-video-embed'  itemprop=\"video\" itemtype=\"https:\/\/schema.org\/VideoObject\"  data-original_url='https:\/\/youtu.be\/DIT46vCU7MY'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"Celik Solat (WIP) untuk Bakat Muda Sezaman 2021 (BMS 2021)\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/DIT46vCU7MY?feature=oembed&autoplay=0&loop=0&controls=1&mute=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><\/div><\/script><div class='av-click-to-play-overlay'><div class=\"avia_playpause_icon\"><\/div><\/div><\/div>\n<div  class='avia-video av-ky7hclpr-91a8b6a1f93889478ccbb07a7e868e4a avia-video-16-9 av-no-preview-image avia-video-load-always av-lazyload-immediate av-lazyload-video-embed'  itemprop=\"video\" itemtype=\"https:\/\/schema.org\/VideoObject\"  data-original_url='https:\/\/youtu.be\/Kdy6Sng_sks'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"See You There  (BMS 2021)\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/Kdy6Sng_sks?feature=oembed&autoplay=0&loop=0&controls=1&mute=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><\/div><\/script><div class='av-click-to-play-overlay'><div class=\"avia_playpause_icon\"><\/div><\/div><\/div>\n<div  class='avia-video av-kyxw9ltu-c242f17ec01f4f50691730e25944f994 avia-video-16-9 av-no-preview-image avia-video-load-always av-lazyload-immediate av-lazyload-video-embed'  itemprop=\"video\" itemtype=\"https:\/\/schema.org\/VideoObject\"  data-original_url='https:\/\/youtu.be\/tlSpA6flXNw '><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"BAKAT MUDA SEZAMAN 2021 | (ZON SELATAN) CELIK SOLAT - IFWAT GHAZALI\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/tlSpA6flXNw?feature=oembed&autoplay=0&loop=0&controls=1&mute=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><\/div><\/script><div class='av-click-to-play-overlay'><div class=\"avia_playpause_icon\"><\/div><\/div><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='undian'  class='avia-section av-c5z4m5-e6767eb81a28bc0994f1b76b84f2862a main_color avia-section-default avia-no-border-styling  avia-builder-el-37  el_after_av_section  avia-builder-el-last  voting avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-1133'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-b8n2gd-0b3b83a61604fcfe17d41d58ccf93f92 sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-b8n2gd-0b3b83a61604fcfe17d41d58ccf93f92\">\n.flex_column.av-b8n2gd-0b3b83a61604fcfe17d41d58ccf93f92{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-b8n2gd-0b3b83a61604fcfe17d41d58ccf93f92 av_one_half  avia-builder-el-38  el_before_av_one_half  avia-builder-el-first  first flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-9divfh-9f9402d854560efa02ea210859db151a '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\" \"=\"\">\n\t<h1 class=\" it_epoll_title\">\n\t<span class=\"it_epoll_title_exact_on\"><\/span>\n\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/online.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali.jpeg\">\n\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t<\/svg>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t<div class=\"it_epoll_survey-item-action \">\n\t\t\t\t\t<form id=\"form_voteon\">\n\t\t\t\t\t\t<input type=\"hidden\" name=\"onpostid\" id=\"onpostid\" value=\"\">\n\t\t\t\t\t\t<div id=\"countdownon\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteon\" value=\"Vote\" onclick=\"voteon('online');\">\n\t\t\t\t\t<\/form>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient onwidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percenton\"> 0% <\/span>\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"5\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 5 \/ 5 <\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n\n<\/div><\/section><\/div><div class='av-flex-placeholder'><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-6v0rrh-6cb21ded0c154bdca1109c4dffb1e5b9\">\n.flex_column.av-6v0rrh-6cb21ded0c154bdca1109c4dffb1e5b9{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-6v0rrh-6cb21ded0c154bdca1109c4dffb1e5b9 av_one_half  avia-builder-el-40  el_after_av_one_half  el_before_av_one_full  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-5qrfu5-6e641b0509e47d54b39d15eaedba8602 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\">\n\t<h1 class=\"it_epoll_title\">\n\t\t<span class=\"it_epoll_title_exact_os\"><\/span>\n\t\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/onsite.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/09\/Mohd-Ifwat-Mohd-Ghazali.jpeg\">\n\t\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-item-action it_epoll_survey-item-action-disabled\">\n\t\t\t\t\t\t<form id=\"form_voteos\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"ospostid\" id=\"ospostid\" value=\"\">\n\t\t\t\t\t\t\t<div id=\"countdownos\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteos\" value=\"Vote\" onclick=\"voteos('os')\">\n\t\t\t\t\t\t<\/form>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient oswidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percentos\"> 0% <\/span>\n\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"3\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 3 \/ 3 <\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n<\/div><\/section><\/div><\/div><!--close column table wrapper. Autoclose: 1 -->\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-3hlexp-9420f1f3535d5841c98e96d579835566\">\n.flex_column.av-3hlexp-9420f1f3535d5841c98e96d579835566{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-3hlexp-9420f1f3535d5841c98e96d579835566 av_one_full  avia-builder-el-42  el_after_av_one_half  avia-builder-el-last  first flex_column_div av-zero-column-padding  column-top-margin'     ><section  class='av_textblock_section av-23dprx-a9e5ce481d41a56a4f92215b004f99e1 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: center;\"><img decoding=\"async\" src=\"https:\/\/chart.googleapis.com\/chart?chs=300x300&cht=qr&chl=https:\/\/www.artgallery.gov.my\/bms&choe=UTF-8\" \/><\/p>\n<\/div><\/section><\/div>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":2628,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20],"tags":[],"class_list":["post-1133","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-negeri-sembilan-2021"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/1133","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1133"}],"version-history":[{"count":20,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/1133\/revisions"}],"predecessor-version":[{"id":6073,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/1133\/revisions\/6073"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/2628"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1133"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1133"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1133"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}