嗨,我有這個動畫寬度更改器,它似乎自動調整到100%,當我點擊展開此腳本然後單擊我的標題徽標。任何想法爲什麼?動畫寬度調整大小100%
$(".fluid").hide();
$(".fixed").click(function() {
$("#mainwidth").animate({width: "1024px"}, 800);
$(this).hide();
$(".fluid").show();
$.cookie("width","fixed", {expires: 365});
return false;
});
$(".fluid").click(function() {
$("#mainwidth").animate({width: "95%"}, 800);
$(this).hide();
$(".fixed").show();
$.cookie("width","fluid", {expires: 365});
return false;
});
if($.cookie("width") == "fixed") {
$(".fixed").hide();
$(".fluid").show();
$("#mainwidth").css("width","1024px");
};
text-align: left;
line-height: 1.4;
margin: auto auto;
margin-top: 40px;
margin-bottom: 50px;
你可以做小提琴嗎? – 2014-10-10 06:27:08
沒有你的HTML和CSS,它不可能說或重現你的問題。請記住,默認情況下,邊框會在外邊增長,所以如果邊框寬度大於2.5%,則會增加到100%。 – Banana 2014-10-10 06:37:23