我是一名设计师转为开发人员,致力于学习视差。我做了这个测试,它在 Chrome 上运行良好,但在 FireFox 或 IE 上不行。有什么建议么?
我正在使用基于 GSAP 的 ScrollMagic。
这是我的脚本
$(document).ready(function($) {
// build tween
var tween = TweenMax.fromTo("#clouds2", 5,
{"background-position": "50% 0px"},
{"background-position": "50% 2500px"}
);
// build scene
var scene = new ScrollScene({triggerElement: "#container", duration: 3000})
.setTween(tween)
.addTo(controller);
// show indicators (requires debug extension)
scene.addIndicators();
});