e.g。 200px到220px。显然“+ = 10%”不能像我预期的那样工作。这是我的代码http://bit.ly/Wyhe32
答案 0 :(得分:2)
我不确定您是想要设置动画还是仅设置悬停值。这两个都是。
$(".gds").css({
'backgroundColor': '#DBEAF9'
}).hover(function () {
$(this).stop().animate({
width: $(this).width()*1.1
}, 350).addClass('shadow');
}, function () {
$(this).stop().animate({
width: ($(this).width()/110)*100
}, 350).removeClass('shadow');
});
$(".gds").css({
'backgroundColor': '#DBEAF9'
}).hover(function () {
$(this).css('width', $(this).width()*1.1)+'px';
}, function () {
$(this).css('width', (($(this).width()/110)*100)+'px')
}, 350).removeClass('shadow');
});
我希望这会有所帮助。
答案 1 :(得分:1)
获取元素的宽度并将其应用于css属性Width:
$('.divclass').css('width',$('.divclass').width() + ((parseFloat($('.divclass').width())) / 100) * 10) + "px");
答案 2 :(得分:0)
在悬停功能的开头添加此代码:
var newWidth = (parseFloat($('.gds').width()) * 1.1);
答案 3 :(得分:0)