gpt4 book ai didi

javascript - 查询 : Display hidden image on page scroll

转载 作者:行者123 更新时间:2023-11-30 16:26:54 26 4
gpt4 key购买 nike

我必须淡入一个设置为显示的图像:无,这就是我正在做的,但对我不起作用

HTML :

<img src="img/myimg.jpg" id="img">

CSS:

#img{
display:none;
}

JS :

$(window).scroll(function() {
if ($(this).scrollTop() > 0) {
$('#img').fadeIn();
}
});

最佳答案

尝试在 ready() 函数中添加您的代码:

$(function(){
$(window).scroll(function() {
if ($(this).scrollTop() > 0) {
$('#img').fadeIn();
}
});
});
#img{
display:none;
}

body{
height: 1000px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<img src="https://assets.entrepreneur.com/content/16x9/822/20141230193127-work.jpeg" id="img"/>

关于javascript - 查询 : Display hidden image on page scroll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34007155/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com