我有一系列的子彈會連續出現。我在項目符號的動畫中使用jQuery和jQuery UI。頂部的子彈需要有圓角,我使用CSS和PIE.htc來完成。這在所有非IE瀏覽器和IE8中都很適用,但在IE7中,第一個項目符號的背景顯示爲80%縮小,大約95%縮小(或者左上角極其偏移)。有趣的是,如果你根本調整了broswer窗口的大小,背景會捕捉到合適的位置(而不是子彈在一個固定寬度的容器中,所以我不會在這裏調整子彈的大小)。如果我在我的CSS中註釋掉PIE.htc行,那麼子彈正常顯示,但我需要圓角。請參閱this image。PIE.htc和jQuery動畫衝突?
相關代碼如下
JS
$([appripratebullet]).addClass('currentBullet').fadeIn('slow').prev().removeClass('currentBullet', 'slow');
CSS
.bullet
{
display:none;
color:#6e6e6e;
min-height:40px;
font-size:2.5em;
line-height:1.5em;
font-weight:normal;
position:relative;
padding:25px 20px;
margin-top:1px;
background:#eeeeee;
border-bottom:1px solid #fff;
}
.bullet.first{
margin-top:0;
-moz-border-radius:8px 8px 0 0;
-webkit-border-radius:8px 8px 0 0;
border-radius:8px 8px 0 0;
behavior: url(/Content/PIE.htc);
}
.bullet.currentBullet{
background:#d98452;
color:#fff;
}
唉唉.HTC devilery!我寧願將IE支持或委託給其他開發人員。 – Raynos 2011-01-05 15:53:28