sifr jquery幻灯片冲突显示

发布于 2024-10-14 05:29:49 字数 412 浏览 3 评论 0原文

我正在使用 malsup 的 jquery 循环插件来播放包含文本的幻灯片。我想要 sifr 替换文本。它在第一张幻灯片上执行此操作,但在后续幻灯片上执行此操作。知道可以做什么才能将 sifr 应用到每张幻灯片上显示的文本吗?

这是我的示例页面(我已将 sfir 文本设置为蓝色和绿色,因此我立即知道它可以工作 - 它可以在 FF 3.6 中工作,但不能在我的 Mac 上的 Safari 5.0.3 或 Chrome 8 中工作... http://ianmartinphotography.com/test-site/testimonials/index-07.html谢谢

I'm using jquery cycle plugin by malsup for a slide show that includes text. I want sifr to replace the text. It does so on the first slide, but not the subsequent ones. Any idea what might be done so that sifr is applied to the text on each slide as it is displayed?

Here's my sample page (I've made the sfir text blue and green so I know immediately it it works--it does work in FF 3.6, but not Safari 5.0.3 or Chrome 8 on my Mac...
http://ianmartinphotography.com/test-site/testimonials/index-07.html

Thanks!

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

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

发布评论

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

评论(1

薄暮涼年 2024-10-21 05:29:49

好的 - 所以我刚刚添加了第二次调用 sIFR.replace 代码 - 这次有一个非常短暂的延迟,以便加载嵌套段落,然后调用 sIFR.replace。这是 jquery 代码:

$('#next').click(

     function() {

             to = setTimeout(function ()    
              {sIFR.replace(helvetica, 
              {selector: 'p', 
              css: '.sIFR-root { background-color: #e6e6e6; color: #0000FF; font-size: 13px; text-align: justify; text-indent: 30px;   }'}); }, 
              100); // call sIFR code after this many milliseconds
              }); });

Okay--so I just added in a second call sIFR.replace code--this time with a very brief delay so that the nest paragraph loads and then sIFR.replace is called. Here's the jquery code:

$('#next').click(

     function() {

             to = setTimeout(function ()    
              {sIFR.replace(helvetica, 
              {selector: 'p', 
              css: '.sIFR-root { background-color: #e6e6e6; color: #0000FF; font-size: 13px; text-align: justify; text-indent: 30px;   }'}); }, 
              100); // call sIFR code after this many milliseconds
              }); });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文