html5 页面滚动_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 08:50:50
Original
866 people have browsed it

两个页面 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();
        });

    });

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!