所以,我試圖在將光標懸停在其上時將圖像更改爲不透明。問題是改變不透明度根本不起作用。懸停時不透明不起作用
下面是代碼CSS
.jarleby {
z-index: 10001;
position: fixed;
left: 43%;
top: 60%;
margin-left: -45px;
margin-top: -56px;
animation-delay: 0.3s;
opacity: 0.5;
filter: alpha(opacity=50); /* For IE8 and earlier */
}
.jarleby:hover {
opacity: 1.0;
filter: alpha(opacity=100); /* For IE8 and earlier */
}
HTML
<div class="jarleby animated fadeInUp">
<a href="https://steamcommunity.com/profiles/76561198345955002" target="_blank"><img src="img/steam.png"></img> </a>
</div>
別的東西正在採取優先。使用!重要或排除你的規則 – Michael
請'動畫'代碼 – AvrilAlejandro
您的代碼有效。 https://codepen.io/anon/pen/YVvwzG一定要給我們一個實際上覆制你的問題的[mcve],否則我們所能做的只是猜測。 –