JCarousel 和 Cufon 不合作:动画让 cufon 消失
我将 cufon 与 jCarousel 一起使用。
轮播中有五个项目,并从右向左旋转——换句话说,它们从屏幕向左旋转。你可以在这里看到它。
http://www.foursquare.org/site/test
如果我将轮播保留为默认行为,到了第5张幻灯片,然后快速向右滑回,一切正常显示。
如果我将轮播设置为“圆形”,则 cufon 标题会在第一次旋转后消失;即,当第一张幻灯片附加到最后一张幻灯片的右侧时,它们不会随幻灯片的其余部分一起提供。
你知道我能做些什么来让 jCarousel 和 Cufon 合作或沟通,这样头条新闻就不会在这种情况下消失吗?
TTFN 特拉维斯
I'm using cufon with jCarousel.
The Carousel has five items in it and rotates right to left -- they go off the screen to the left, in other words. You can see it here.
http://www.foursquare.org/site/test
If I leave the carousel on default behavior, it gets to the 5th slide and then slides back to the right fast, and everything displays properly.
If I set the carousel to 'circular', the cufon headlines disappear after the first rotation; i.e. they don't come with the rest of the slide when the first slide gets appended to the right of the last slide.
Do you know what I can do to get jCarousel and Cufon to co-operate or communicate so that the headlines don't disappear in this situation?
TTFN
Travis
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您的 jcarousel 自动旋转,则需要将 Cufon.Refresh() 附加到动画函数。
对于我们的轮播,我们在 jcarousel 上使用了“itemVisibleOutCallback”参数,并将 Cufon.Refresh() 附加到“onAfterAnimation”调用。
这是一个例子:
亚历克斯
If you have your jcarousel rotating automatically you need to attach the Cufon.Refresh() to an animation function.
For our carousel we used the 'itemVisibleOutCallback' parameter on jcarousel and attached the Cufon.Refresh() to the 'onAfterAnimation' call.
Here's an example:
Alex
我在使用 coda-slider 的变体时遇到了这个问题。什么似乎对我有用,而不是使用
我使用
和
来揭示。
I ran into this problem with a variation of coda-slider. What seemed to work for me, instead of using
I used
and
to reveal.
我最终做的是每次轮播移动到下一个项目时,我都会调用 Cufon.replace 函数,以便它重新呈现相关文本的 cufon。
IE
但是,我在 IE 中使用 jCarousel 时遇到了自己的问题,在我使用或不使用上述 jQuery 代码的情况下,它似乎在隐藏的轮播项目上双重写入了 cufon。
如果有人遇到并解决这个问题,那将非常有帮助。如果我事先找到修复程序,我会在这里发布:)
What I ended up doing was everytime carousel moved to the next item, I called the Cufon.replace function so that it re-renders the cufon for the relevant text.
I.E.
However, I have my own problem with jCarousel in IE where it seems to double write the cufon on hidden carousel items where I use the above jQuery code or not.
If anyone comes across and fixes this issue, it would be very helpful. If I find the fix beforehand, I will post on here :)
在 jCarousel lite 中,我使用以下代码:
现在似乎可以正常工作 - 但到目前为止,我只在 Mac 上的 Firefox 中进行了测试。不过还是谢谢你的帖子。它帮助了我,我希望这也能帮助其他人。
干杯,
迈克尔.
In jCarousel lite I use the following code:
Seems to work a treat now - but I have as yet, only tested in Firefox on a Mac. Thanks for your post though. It helped me out and I hope this helps someone else out.
Cheers,
Michael.
Alex 有一个好主意,但您无法在每个 itemVisibleOutCallback 上刷新所有 cufon 对象。
这会给你带来的是放慢速度。
再想一想,当您单击“下一步”按钮并且 Cufon 刷新了页面加载时已转换的每个元素时 - 那么某些浏览器可能会出现问题。
因此,正确的解决方案是仅替换特定元素,您可以这样做:
Alex had a good Idea but You cant refresh your all cufon objects at every itemVisibleOutCallback.
What this will give You is a slooooowdown.
Think again, when you click "next" button and Cufon refreshed every single element that has transformed on page load - then some browsers might have problem with that.
So the proper solution is to replace specific elements only, you can do it like this: