在 IE8 中使用 jQuery 制作 div 动画时出现问题
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论