我有一個文本列表結構如下:文字模糊效果通過jQuery
<div class="text">
<a href="/node/30">Site Text</a>
</div>
我想爲其他列表項模糊效果,當鼠標懸停在一個列表項。
我想得到http://tympanus.net/Tutorials/ItemBlur/上顯示的效果。
我該怎麼辦?
我有一個文本列表結構如下:文字模糊效果通過jQuery
<div class="text">
<a href="/node/30">Site Text</a>
</div>
我想爲其他列表項模糊效果,當鼠標懸停在一個列表項。
我想得到http://tympanus.net/Tutorials/ItemBlur/上顯示的效果。
我該怎麼辦?
嘿檢查這些例子:
是的,但你只能模糊的文字在這裏沒有其他東西(在CSS 2。 )
但可以在css 3中模糊其他東西。
編輯:
檢查了這一點:
<style>
.hello{color:transparent; text-shadow:0 0 0 #000; font-size:20px;}
.hello div{float:left; margin:10px;}
.hello:hover div{text-shadow:0 0 10px #000;}
.hello:hover div:hover{text-shadow:0 0 0 #000;}
</style>
<div class="hello">
<div>
new1
</div>
<div>
new2
</div>
<div>
new3
</div>
<div>
new4
</div>
</div>
這是基於效果使用它,享受簡單的CSS)
嘗試:
$('.text a').blur(function() {
//Add your styles
}
jQuery的'模糊()'與OP想要的效果無關;它是一個事件綁定器... http://api.jquery.com/blur/ – BenM
嘗試了這一點: -
$("#ElementID").hover(function(){
$("#OtherElementId").blur();
});
jQuery的blur()與OP所需的效果無關;這是一個事件活頁夾... http://api.jquery.com/blur/ – BenM
謝謝,但我不明白。示例1,對所有文本製作模糊效果。 – Karmacoma
??? !!!! 其實,訣竅是,你必須刪除文本的顏色,並只依靠文字陰影效果。 –
是的,它的工作,但在所有文本。我想,當鼠標懸停一個元素時,獲得模糊效果的其他元素。 – Karmacoma