這裏的代碼側重於第二個div。現在我想將聚焦元素的背景顏色設置爲另一種顏色幾秒鐘,然後淡出回原來的顏色。怎麼做?如何更改聚焦元素的背景顏色幾秒鐘?
$(function(){
$("#two").focus();
});
body{color:white;}
#fis{height:600px;width: 60px;background-color:red;}
#two{height:600px;width: 60px;background-color:green;}
#thr{height:600px;width: 60px;background-color:blue;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="fis">hello
</div>
<div id='two' tabindex='1'>mr
</div>
<div id='thr'>john
</div>
感謝,但我覺得你在錯過了一些東西存在片斷無顏色變化 –
「先生」標籤被突出顯示(黃色) 2秒後開始變綠,不是嗎? –