MOVE.JS 下载后 按照这个写法完全出错误。我的天,到底是怎么回事?
<script>
$(document).ready(function(){
$('#fullpage').fullpage({
anchors:['1','2','3','4','5'],
navigation:true,
navigationTooltips:['This 1 ','This 2','This 3','This 4','This 5'],
afterLoad:function(link,index){
switch (index){
case 1:
move('#thisone h2').scale(3).end();
break;
case 2:
break;
case 3:
break;
case 4:
break;
case 5:
break;
default:
break;
}
}
});
});
</script>