我想向我的网站添加预加载器,我有以下代码:
<div class="loader" ></div>
<script>
document.addEventListener('DOMContentLoaded', function() {
jQuery(function($){
$('.loader').fadeOut('slow');
}); });
</script>
<style>
.elementor-element-edit-mode .loader{
display: none;
}
.loader {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('http://ibiza-bar.co.il/wp-content/uploads/2020/04/ibiza-logo.png') 50% 50% no-repeat #fff;
}
</style>
我希望它看起来像窗帘关闭,而不是这种简单的淡出效果,就像下面的示例一样:
https://i.stack.imgur.com/3eo6y.gif
知道如何根据我的代码实现这种独特的淡出效果吗?
慕侠2389804
相关分类