להכניס את הקוד הבא בוידג'ט HTML, לא לשכוח להחליף את כתובת ה URL של הגיף לזו שלכם
<div class="loader" ></div>
<script>
window.onload = function() {
jQuery(function($){
$('.loader').fadeOut('slow');
});
};
/*document.addEventListener('DOMContentLoaded', function() {
jQuery(function($){
$('.loader').fadeOut('slow');
}); });*/
</script>
<style>
.loader {
position: fixed;
animation-duration: 500ml;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('http://yourdite.co.il/wp-content/uploads/2020/10/youtrlogo.gif') 50% 50% no-repeat #fff; /* Change the #fff here to your background color of choice for the preloader fullscreen section */
}
.elementor-editor-active .loader{
display: none;
}
</style>
Code language: HTML, XML (xml)