在 IE8 中使用 jQuery 制作 div 动画时出现问题

发布于 2024-12-09 21:42:40 字数 1585 浏览 0 评论 0原文

我正在使用 jQuery 为网站的 3 个部分制作动画:http://oceanic.medialounge-dev.co。 uk *那些说翻滚的)

它们在每个浏览器中都工作得很好,除了 IE8,它们只是奇怪地移动,讽刺的是它在 IE7 中工作得很好不知道为什么,我使用的 JS 代码相当简单:

jQuery(function($){
        // Global variable so we can check if the rollover box 
        // is at the homepage or inner pages
        var innerBox = ($('.inner-content').length > 0) ? true : false;

        $('.rollover-single').hoverIntent(function(){
            var box    = $(this);

            // Move box up and increase height
            box.animate({
                'margin-top' : (innerBox) ? '-204px' : '-160px',
                'height'     : '260px' 
            });

            // Increase height of hidden content
            box.find('.rollover-content').animate({
                'height' : '204px'
            });

            // Change rollover text
            box.find('.readmore').text('READ MORE');
        }, function(){
            // Same as above but on mouseleave
            var box           = $(this);

            box.animate({
                'margin-top' : '0',
                'height'     : (innerBox) ? '56px' : '100px'
            });

            box.find('.rollover-content').animate({
                'height' : (innerBox) ? '0' : '44px'
            });

            box.find('.readmore').text('ROLL OVER');
        });
    });

innerBox 变量只是为了检查我们是否位于内部页面,因为那里的框较小,我也在使用hoverIntent插件,但当我使用常规hover<时/code> 处理我也遇到了同样的问题。谁能帮助我吗?

提前致谢!

I'm using jQuery to animate 3 sections of a site: http://oceanic.medialounge-dev.co.uk *the ones that say roll over)

They work fine in every browser except in IE8 where they just move around strangely, ironically it works fine in IE7 don't know why, the JS code I'm using is rather simple:

jQuery(function($){
        // Global variable so we can check if the rollover box 
        // is at the homepage or inner pages
        var innerBox = ($('.inner-content').length > 0) ? true : false;

        $('.rollover-single').hoverIntent(function(){
            var box    = $(this);

            // Move box up and increase height
            box.animate({
                'margin-top' : (innerBox) ? '-204px' : '-160px',
                'height'     : '260px' 
            });

            // Increase height of hidden content
            box.find('.rollover-content').animate({
                'height' : '204px'
            });

            // Change rollover text
            box.find('.readmore').text('READ MORE');
        }, function(){
            // Same as above but on mouseleave
            var box           = $(this);

            box.animate({
                'margin-top' : '0',
                'height'     : (innerBox) ? '56px' : '100px'
            });

            box.find('.rollover-content').animate({
                'height' : (innerBox) ? '0' : '44px'
            });

            box.find('.readmore').text('ROLL OVER');
        });
    });

The innerBox variable is just to check if we are on the inner pages since the boxes are smaller there, I'm also using the hoverIntent plugin but back when I used the regular hover handle I had the same issues. Can anyone help me?

Thanks in advance!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文