I m 不是编纂java的最佳方法,但这是我可以提出的最佳办法:
我只想简化以下文字:
$( #about )
.hover(function() {
$( #bg_mask ).stop().animate({ "height": "100px", }, 1500 );
}, function() {
$( #bg_mask ).stop().animate({ "height": "40px", }, 1500 );
});
$( #blog )
.hover(function() {
$( #bg_mask ).stop().animate({ "height": "180px", }, 1500 );
}, function() {
$( #bg_mask ).stop().animate({ "height": "40px", }, 1500 );
});
$( #contact )
.hover(function() {
$( #bg_mask ).stop().animate({ "height": "250px", }, 1500 );
}, function() {
$( #bg_mask ).stop().animate({ "height": "40px", }, 1500 );
});
我确信,可以撰写一份可以归纳/简化我做些什么的发言。
从根本上说,这就是:
if hover over #about then ->animate width:x, if hover over #blog then ->animate width:xx, etc, etc, else if -> animate width:40px
我很想知道,即使你不愿意编纂该守则,即使你刚才向我指出了正确的方向,我还是很有意义。
乘客。