jQuery 垂直气泡选框 HTML 元素
我正在寻找一个好的垂直气泡选框插件。
不是简单的垂直选取框,我正在寻找一个好的“类似闪光”的效果插件,它可以使元素选取框从 div 内容的底部到顶部平滑。
可能真的很好,但我认为这个插件只是在我的梦想中
I'm searching for a good vertical bubble marquee plugin.
Not simple vertical marquee, I'm looking for a good "flash like" effects plugin, something smooth with element marquee from bottom to top of a div content.
Could be really nice but I think it's only in my dreams this plugin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,它的效率不是很高,但我认为这是一个好的开始:
它使用 Math.sin 水平移动元素。函数
verticalMarquee
接受两个参数,一个用于垂直速度,另一个用于水平速度。该函数只能在仅包含一个元素的 jQuery 对象上调用 - 在测试过程中,任何超过一个元素同时进行动画处理都会导致严重的滞后。在这里查看一个简单的演示:http://jsfiddle.net/CcccQ/2/
Well, it's not terribly efficient, but this is a good start I think:
It uses
Math.sin
to move the element horizontally. The functionverticalMarquee
accepts two arguments, one for vertical speed and the other for horizontal speed. The function can only be called on jQuery objects that contains only one element - during testing anything more than one element been animated at once caused terrible amount of lagging.See a simple demo here: http://jsfiddle.net/CcccQ/2/
您的意思是类似 The Silky Smooth Marquee 插件吗?
Do you mean something like The Silky Smooth Marquee plugin?