5

建了一个网站,其中很大一部分依赖于用 3D 效果翻转 DIV,昨天早上升级到 FF14,效果就坏了。它在 FF13、Chrome、IE9 等中运行良好。

我无法发布我正在处理的网站,但该网站以完全相同的方式被破坏 - 它在卡片的正面和背面之间跳转而不是旋转

http://jigoshop.com/product-category/extensions/

有人有想法么?


编辑:好的,可能应该包含更多信息

我正在使用这个插件来处理翻转

http://www.zachstronaut.com/projects/rotate3di/

当我说它与其他网站的技术相同时,我错了,因为这似乎是纯 CSS,而这个插件是用于 jQuery 的。这是我放在一起的演示的链接

http://olliesilviotti.co.uk/the-laboratory/cards/demo/


编辑:这是查询的使用方式:

$('#boxes .box div.back').hide().css('left', 0);

            function mySideChange(front) {
                if (front) {
                    $(this).parent().find('div.front').show();
                    $(this).parent().find('div.back').hide();

                } else {
                    $(this).parent().find('div.front').hide();
                    $(this).parent().find('div.back').show();
                }
            }


            $('#boxes .box').live('mouseover', function() {
                if (!$(this).data('init')) {
                    $(this).data('init', true);
                    $(this).hoverIntent({
                        over: function () {
                            $(this).find('div').stop().rotate3Di('flip', 250, {direction: 'clockwise', sideChange: mySideChange});
                        },
                        timeout: 1,
                        out: function () {
                            $(this).find('div').stop().rotate3Di('unflip', 500, {sideChange: mySideChange});
                        }
                    });
                    $(this).trigger('mouseover');
                }
            });

标记如下所示:

<div id="boxes">
        <div class="box floated-box">
                <div class="front">Random Number</div>
                <div class="back">I am the back of the card</div>
        </div>
</div>
4

1 回答 1

4

这实际上是因为 Firefox 遵循最新标准。来自https://developer.mozilla.org/en/Firefox_14_for_developers

由于它已从标准草案中删除,因此对 skew() 函数的支持已从 transform 属性中删除。

(这会导致整个-moz-transform声明被删除。)

与其向 Bugzilla 报告错误,不如向插件的作者报告。

于 2012-07-19T09:54:56.397 回答