jQuery循环插件分页+ CSS3PIE

发布于 2024-11-17 13:27:57 字数 157 浏览 2 评论 0原文

我正在使用 jQuery 循环插件来播放图像幻灯片。用圆形子弹作为寻呼机(因为现在看起来很流行)。这在除 IE 之外的“现代”浏览器中完美运行。它弄乱了寻呼机上的 activePagerClass。

因为 IE 无法实现 border-radius,所以我使用 CSS3PIE 行为。

I am using the jQuery cycle plugin for a slideshow of images. With rounded bullets as pagers (because it's all the rage now so it seems). This worked perfectly in the 'modern' browsers except for IE. It is messing up the activePagerClass on the pagers.

Because IE can't do border-radius, I use the CSS3PIE behavior.

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

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

发布评论

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

评论(1

岁吢 2024-11-24 13:27:57

更改

$.fn.cycle.updateActivePagerLink = function(pager,currSlide,clsName){
    $(pager).each(function(){
        $(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);
     });
);

jQuery 源代码来

$.fn.cycle.updateActivePagerLink = function(pager,currSlide,clsName){
    $(pager).each(function(){
        $('a',this).removeClass(clsName).eq(currSlide).addClass(clsName);
    });
);

修复它。

所以看来children()函数和CSS3PIE的使用存在问题。我不喜欢行为属性,我宁愿不使用它,但客户想要在 IE 中使用圆形项目符号......

所以我希望它对某人有所帮助。

Changing

$.fn.cycle.updateActivePagerLink = function(pager,currSlide,clsName){
    $(pager).each(function(){
        $(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);
     });
);

in the jQuery source code to

$.fn.cycle.updateActivePagerLink = function(pager,currSlide,clsName){
    $(pager).each(function(){
        $('a',this).removeClass(clsName).eq(currSlide).addClass(clsName);
    });
);

fixed it.

So it seems there is an issue with the children() function and the use of CSS3PIE. I'm not a fan of the behavior property and I would rather not use it, but the client wants rounded bullets in IE...

So I hope it helps somebody.

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