2012-06-07 94 views

回答

2

嘿檢查這些例子:

是的,但你只能模糊的文字在這裏沒有其他東西(在CSS 2。 )

但可以在css 3中模糊其他東西。

Example 1

Example 2

編輯:

檢查了這一點:

<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)

+0

謝謝,但我不明白。示例1,對所有文本製作模糊效果。 – Karmacoma

+0

??? !!!! 其實,訣竅是,你必須刪除文本的顏色,並只依靠文字陰影效果。 –

+0

是的,它的工作,但在所有文本。我想,當鼠標懸停一個元素時,獲得模糊效果的其他元素。 – Karmacoma

0

嘗試:

$('.text a').blur(function() { 
    //Add your styles 
} 
+2

jQuery的'模糊()'與OP想要的效果無關;它是一個事件綁定器... http://api.jquery.com/blur/ – BenM

0

嘗試了這一點: -

$("#ElementID").hover(function(){ 
    $("#OtherElementId").blur(); 
}); 
+1

jQuery的blur()與OP所需的效果無關;這是一個事件活頁夾... http://api.jquery.com/blur/ – BenM