我正在尝试在我开始工作的滚动上设置技能栏,但现在我试图更进一步,当你向后滚动时将动画降下来。
所以滚动到330条将动画到每个div宽度,现在我想向上滚动动画回到0宽度
JS:
> $(document).ready(function(){ $(document).scroll(function() { var top
> = $(document).scrollTop(); console.log(top);
> if (top > 330) {
> $("#html, #css").animate({width:"100%"}, 2000);
> } else {
> $("#html, #css").animate({width:"0%"}, 2000); /* not working */
> }
>
>
> if (top > 330) $("#javascript").animate({width:"70%"}, 2000);
> if (top > 330) $("#php").animate({width:"50%"}, 2000);
> if (top > 330) $("#mysql").animate({width:"30%"}, 2000);
> if (top > 330) $("#wordpress").animate({width:"60%"}, 2000);
> }); });
的CSS:
> #height { height:1000px; }
>
> ul {
> list-style-type: none;
> font-family: 'Open Sans';
> color: #787878;
> font-size: 0.8em;
> font-weight: 500;
> font-style: italic;
> line-height: 160%;
> letter-spacing: 1px; }
>
> } li {
> padding: 2px 0 2px 0; }
>
> #html, #css, #javascript, #php, #mysql, #wordpress {
> background-color: #0194bd;
> width: 0%;
> height: 9px;
> margin-bottom: 10px; }
HTML:
<div id="height"></div>
>
> <ul>
> <li>HTML</li>
> <li id="html" class="full"> </li>
> <li>CSS</li>
> <li id="css"></li>
> <li>Javascript</li>
> <li id="javascript"></li>
> <li>PHP</li>
> <li id="php"></li>
> <li>MySQL</li>
> <li id="mysql"></li>
> <li>Wordpress</li>
> <li id="wordpress"></li> </ul>
答案 0 :(得分:0)
好好玩了一会儿我的if else声明后,我意识到我的动画并没有停止播放以恢复原来的尺寸。
所以我添加了以下内容:
$(document).ready(function(){
$(document).scroll(function() {
var top = $(document).scrollTop();
console.log(top);
if (top > 330) {
$("#html, #css").animate({width:"100%"}, 2000);
} else {
$("#html, #css").stop(true).animate({width:"0"}, '2000'); <--- this line
}
});
});