我使用css和jquery懸停模糊效果。當您將鼠標懸停在其中一段文本上時,css的某些部分將應用於使用jquery的兄弟。如果您查看link,「音樂」文本沒有超鏈接,並且在播放時採取了我想要的操作方式。但其餘的都是鏈接的,我希望它們在超鏈接時表現得像「音樂」。你如何使鏈接文本作爲正常文本行事?
CSS:
.blur {
text-decoration: none;
color: #339;
-webkit-transition: 400ms ease 100ms;
-moz-transition: 400ms ease 100ms;
transition: 400ms ease 100ms;
}
.textshadow {
text-decoration: none;
color: rgba(0,0,0,0);
outline: 0 none;
-webkit-transition: 400ms ease 100ms;
-moz-transition: 400ms ease 100ms;
transition: 400ms ease 100ms; }
.out {
text-shadow: 0 0 4px #339;}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
opacity:none;
}
同樣的,你可以改變'
定義「行爲像」。不知道爲什麼你不能只爲'th'寫''th'相同的css規則。 – charlietfl
爲你的問題製作了一個[fiddle](http://jsfiddle.net/xK8nq/)。 –