Twitter 风格的“新闻摘要” (jQuery)

发布于 2024-09-27 12:01:15 字数 345 浏览 5 评论 0原文

我正在寻找一个与 Twitter 上的新闻报道几乎相同的新闻报道(水平滚动的新闻报道)

我正在寻找的主要内容:

连续滚动
- 当一个元素不再可见时,它将被删除并放在列表的最后面。
没有暂停
- 它应该是平滑滚动,而不是滚动、暂停、滚动

我尝试通过

将 ul 设置为 overflow: hide
使用 margin-left: {current_margin_left}-10li:first 进行动画处理 每一秒

但它很快就会崩溃。

有符合这个描述的东西吗?

I am looking for a news ticker pretty much identical to the one on twitter (the one the scrolls horizontally)

The main things I am looking for:

Continuous scroll
- When an element is no longer visible it is removed and put at the very back of the list.
No Pause
- It should be a smooth scroll, not a scroll, pause, scroll

I attempted to do it by

Setting the ul to overflow: hidden
Animating the li:first using margin-left: {current_margin_left}-10
every second

But it goes way to fast and breaks.

Is there anything that matches this description?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人间☆小暴躁 2024-10-04 12:01:15

下面的链接包含创建纯 jQuery 和 jQuery 的教程。 CSS twitter 代码,利用 Twitter 的搜索 API。它将显示您或您朋友的最新推文,并且不需要任何服务器端代码或数据库。因此,股票代码可以轻松地包含在任何网页中,并可以轻松地根据您的喜好进行修改。

检查以下链接以获取详细信息 -

http://tutorialzine.com/2009/10/ jquery-twitter-ticker/

The below link consists of a tutorial to create a pure jQuery & CSS twitter ticker which utilizes Twitter’s Search API. It will show your or your friends’ latest tweets, and will not require any server side code or databases. As a result, the ticker will be easily included into any web page and easily modified to your likings.

Check the below link for detailed info -

http://tutorialzine.com/2009/10/jquery-twitter-ticker/

巷雨优美回忆 2024-10-04 12:01:15

我认为 jQuery webTicker 将完全符合您的描述;这个想法正是 Twitter 的想法,我们花了一些时间才准确地开发出来。它还具有淡入和淡出效果等附加功能;选择不同的方向和速度以及可定制的样式表。另一个优点是您可以在每页上运行多个代码。

我确实希望您觉得这个答案有用。

I think the jQuery webTicker would match your description perfectly; the idea was exactly the Twitter one and it took us some time to develop exactly. It also comes with extras like fade-in and fadeout effects; choice of different directions and speeds and also a customisable stylesheet. An additional plus is you can run multiple tickers per page.

I do hope you find this answer useful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文