有谁知道 jquery 插件或 css3 技术是移动文本元素的另一种简单方法,比如 div 内从 div 的顶部到底部的 10 h1?
所以
<div class="container">
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
...
</div>
我希望 h1 连续滑动,并且 div 区域充满了 h1 的向下滑动,就像电影学分一样。
我尝试了 jquery 循环插件,但我无法在第一张幻灯片完成动画之前启动第二张幻灯片(h1)。
这是代码:
$('.container').cycle({
fx: 'scrollDown',
sync: 1,
timeout: 1000,
speed: 6000,
continuous: 1,
cleartypeNoBg: true
});
还尝试过这样的事情:
$('.container').cycle({
fx: 'custom',
sync: 1,
cssBefore: {
top: 0,
display: 'block'
},
animIn: {
top: 0
},
animOut: {
top: 332
},
cssAfter: {
display: 'none'
},
delay: -1000
});
});