滑块内的文本淡入淡出
我目前正在开发一个利用scrollTo 的jquery 滑块。理想情况下,我希望滑块左侧部分的文本在发生scrollTo动画后淡入,首先是标题淡入,然后是slug,然后是按钮。我还想学习如何在“滚动到”图像后将动画应用到图像!
我的 lil beta 可以在这里看到: http://towerwebstudio.com/GFC2/
非常感谢:D
I'm currently working on a jquery slider that utilizes scrollTo. Ideally I'd like the text on the left portion of the slider to fade in after the scrollTo animation occurs, with first the heading fading in, then the slug, then the button. I'd also like to learn how to apply animation to the image after it's been "scrolled to" as well!
My lil beta can be seen here: http://towerwebstudio.com/GFC2/
Thanks so much :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使文本和图像显示:无,然后使用scrollTo的onAfter:设置在图像和文本上运行fadeIn函数:
http://api.jquery.com/fadeIn/
确保在图像和文本滚动到视图之外后隐藏它们。
Make the text and image display:none and then use the onAfter: setting of scrollTo to run the fadeIn function on both the image and the text:
http://api.jquery.com/fadeIn/
make sure you hide the image and the text after they are scrolled out of view also.