大家好,我现在正在制作一个在线漫画,并且正在使用以下jquery代码。 Jquery应该从#compscreen2图像改变我的css代码" display:none"到"显示:块"在其他功能发生但它似乎无法工作之后,我无法弄清楚为什么......请帮忙吗? 它似乎适用于其他图像.... #compscreen display:none确实有效。救命啊!
JS:
$(document).ready(function () {
//function for automated top scrolling
$(window).on('scroll', function(e){
scrollPosY();
if ($('#panel11').visible(true) && scrolled == 0) {
$('html, body').stop().animate( { scrollTop: $('.scrollpanel').offset().top }, 500 )
scrolled = 1;
$("div.wrap2").remove();
$("#compscreen2").css("display","block");
$("#compscreen").css("display", "none");
}
});
$window = $(window);
});
CSS:
#compscreen2 img{
width: 60%;
padding-left: 20%;
position: absolute;
display: none;
}