我有两个 div:
width:100%; height:100%
所以我的整个文档的高度为 200%;两个 div 都有一个相互链接,
现在当我点击链接时,我希望网站顺利滑到另一个 div,
我知道这将如何在 jquery 中工作,例如使用 .scrollto,但我的客户想要一个没有框架的应用程序。只有 javascricpt 和 css!
我试图用 translateY 来实现它,但它没有用!
这是一个示例代码:http: //jsfiddle.net/hSU7R/
的HTML
<div class="full" id="one">
<span style="width:100%; background-color:blue">
<a href="#two" >Scroll to 2</a>
</span>
</div>
<div class="full" id="two">
<span style="width:100%; background-color:blue">
<a href="#one" >Scroll to 1</a></span>
</div>
CSS
html,body {
width:100%;
height:100%;}
.full {
height:100%;
width:100%;}
#one {background-color:green}
#two {background-color:red}