Tag: CSS CSS

在CSS3中滑动animation

我目前正在研究用HTML 5,CSS3和jQuery编写的移动应用程序框架。 对于“屏幕”的标记,我有以下布局: <div class="page" id="home"> <!– some content is here… –> </div> <div class="page" id="lists"> <!– some more content is here… –> </div> 我目前正在使用jQuery来检测页面上的第一个div元素,并将其class属性设置为current 。 然后我有下面的CSS声明隐藏除了page.current任何东西: div.page { display: none; } div.page.current { display: block; } 每当浏览器检测到哈希更改事件( window.onhashchange ),我运行以下jQuery: if(window.location.hash) { var the_hash = window.location.hash.substring(1); if($('#' + the_hash).length > 0) { $('.current').removeClass('current'); $('#' + […]