两个页面 page1 page2
page1 在上 page2在下
页面向上滚动
page1.style.display = “block”;
page2.style.display = “block”;
page2.style.top = “100%”;
page1.setattribute(“class”,”page fadeout”);
page2.setattribute(“class”,”page fadein “);
#page1.fadeout{
opacity: .3;
-webkit-transition:.5s;
-webkit-transform: translate(0,-100%);
}
#page2.fadein{
-webkit-transition: .5s;
-webkit-transform: translate(0,-100%);
}
页面向下滚回来怎么写 求教?
回复讨论(解决方案)
搞定 了
$(“#edit_home”).click(function(){
setTimeout(function(){
page_main.removeAttribute(“page fadeout”);
page_edit.removeAttribute(“page fadein”);
page_main.style.top = “-100%”;
page_edit.style.top = “0%”;
page_main.setAttribute(“class”,”page fadeout1″);
page_edit.setAttribute(“class”,”page fadein1″);
},1000);
$(‘#edit_home’).removeClass().addClass(“bounce” + ‘ animated’).one(‘webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend’, function(){
$(this).removeClass();
});
});
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3117845.html