我想在滚动时旋转一个 div。
当我向下滚动页面的 25% 时,我希望元素旋转 90*,当我滚动页面的 50% 时,我希望它旋转 180*,依此类推。
有人建议我使用 jQueryRotat.js,我在 JSfiddle 上填写了所有内容,但无法正常工作。你可以在这里查看我已经拥有的:JSFiddle
这是我到目前为止得到的
HTML:
<div class="site_wrapper">
<div class="logo">
<h1>Logo</h1>
</div>
</div
CSS:
.site_wrapper{
max-width:200px;
height:10000px;
margin:auto;
background:#555;
}
.logo{
width:150px;
height:150px;
margin-left:-75px;
border-radius:50%;
background:url(http://www.gielesdesign.nl/imgs/textures/texture-1.jpg);
position:fixed;
top:50px;
left:50%;
text-align:center;
}