我正在使用jarallax的插件 网址:http://www.jarallax.com/
并想知道是否有一种简单的方法可以在jarallax中触发回调 下面的代码似乎不起作用。
<script>
init=function(){
var jx=new Jarallax();
jx.addAnimation('.bg',[{progress:'0%',top:'1px'},
{progress:'100%',top:'1700px',event:{complete:hideText}}]);
}
hideText = function() {
alert('hide text function');
}
</script>