您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“不使用hover外部CSS樣式怎么實(shí)現(xiàn)hover鼠標(biāo)懸停改變樣式”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
不能使用外部CSS樣式實(shí)現(xiàn)hover鼠標(biāo)懸停改變樣式
在DIV+CSS網(wǎng)頁(yè)布局中,有時(shí)我們不能直接使用外部CSS樣式控制DIV樣式,比如對(duì)a設(shè)置a:hover樣式。
可以使用onMouseOver(鼠標(biāo)移到目標(biāo)上)和onMouseOut(鼠標(biāo)移開(kāi)目標(biāo)后)實(shí)現(xiàn)對(duì)a標(biāo)簽或其它html標(biāo)簽設(shè)置hover樣式。
直接對(duì)標(biāo)簽使用即可,無(wú)論A標(biāo)簽、SPAN標(biāo)簽、DIV標(biāo)簽等均可。
<a href="http://kemok4.com/" style="color:#00F; text-decoration:none" onMouseOver="this.style.color='#F00';this.style.textDecoration='underline'" onMouseOut="this.style.color='#00F';this.style.textDecoration='none'">jb51</a> 以上對(duì)a超鏈接代碼設(shè)置默認(rèn)樣式、鼠標(biāo)移到目標(biāo)上、鼠標(biāo)移開(kāi)目標(biāo)后樣式。特點(diǎn)代碼比較長(zhǎng)。
jb51.net重要提示說(shuō)明:為了看到鼠標(biāo)移開(kāi)后與默認(rèn)樣式相同,通常需要直接對(duì)標(biāo)簽使用style設(shè)置默認(rèn)CSS樣式并且與onMouseOut設(shè)置CSS樣式保持相同。以免初始狀態(tài)對(duì)象樣式與鼠標(biāo)移開(kāi)對(duì)象后樣式的不同。
如上代碼:
style="color:#00F; text-decoration:none" 與
onMouseOut="this.style.color='#00F';this.style.textDecoration='none'" 設(shè)置默認(rèn)字體顏色#00F與不顯示下劃線。
通過(guò)常規(guī)hover與不用外部hover實(shí)現(xiàn)hover樣式設(shè)置方法案例如下
1、完整常規(guī)外部CSS案例展示代碼:
XML/HTML Code復(fù)制內(nèi)容到剪貼板
1.<!DOCTYPE html>
2.<html>
3.<head>
4.<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5.<title>jb51.net實(shí)例</title>
6.<style>
7..abc a{ color:#00F; text-decoration:none}
8./* 默認(rèn)abc盒子里超鏈接文字字體顏色為藍(lán)色 沒(méi)有下劃線 */
9.
10..abc a:hover{ color:#F00; text-decoration:underline}
11./* 鼠標(biāo)懸停abc盒子里超鏈接文字上后字體顏色為紅色 出現(xiàn)下劃線 */
12.
13..bb{ color:#00F}
14..bb:hover{ color:#F00; font-weight:bold}
15./* 直接對(duì)bb對(duì)象盒子設(shè)置hover */
16.</style>
17.</head>
18.<body>
19.<div class="abc">
20.歡迎訪問(wèn)<a href="http://kemok4.com/">jb51.net</a>網(wǎng)站!
21.</div>
22.
23.<div class="bb">
24.默認(rèn)我是藍(lán)色,鼠標(biāo)懸停時(shí)變紅色并加粗。
25.</div>
26.</body>
27.</html> 2、HTML代碼與瀏覽器效果截圖說(shuō)明圖
默認(rèn)與鼠標(biāo)懸停瀏覽器測(cè)試效果截圖
3、外部CSS樣式轉(zhuǎn)換后HTML源代碼
XML/HTML Code復(fù)制內(nèi)容到剪貼板
1.<!DOCTYPE html>
2.<html>
3.<head>
4.<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5.<title>jb51.net實(shí)例</title>
6.</head>
7.<body>
8.<div class="abc">
9.歡迎訪問(wèn)
10.<a href="http://www.jb.com/"
11.style="color:#00F; text-decoration:none"
12.onMouseOver="this.style.color='#F00';this.style.textDecoration='underline'"
13.onMouseOut="this.style.color='#00F';this.style.textDecoration='none'">jb51.net</a>網(wǎng)站!
14.</div>
15.
16.<div style="color:#00F; font-weight:normal"
17.onMouseOver="this.style.color='#F00';this.style.fontWeight='bold'"
18.onMouseOut="this.style.color='#00F';this.style.fontWeight='normal'">
19.默認(rèn)我是藍(lán)色,鼠標(biāo)懸停時(shí)變紅色并加粗。
20.</div>
21.</body>
22.</html>
4、使用onMouseOver和onMouseOut實(shí)現(xiàn)外部CSS hover樣式截圖
使用onMouseOver和onMouseOut實(shí)現(xiàn)外部CSS hover樣式瀏覽器測(cè)試效果與說(shuō)明截圖
5、特別說(shuō)明:無(wú)論是a標(biāo)簽還是div標(biāo)簽、span標(biāo)簽、h2標(biāo)簽、p標(biāo)簽等都可以直接在標(biāo)簽內(nèi)使用onMouseOver和onMouseOut實(shí)現(xiàn)鼠標(biāo)懸停移到對(duì)象上與移開(kāi)后樣式變化。需要注意是,一般為了初始默認(rèn)狀態(tài)與鼠標(biāo)移開(kāi)后樣式保存一致,需要對(duì)標(biāo)簽內(nèi)加style屬性設(shè)置CSS與onMouseOut(鼠標(biāo)移開(kāi))設(shè)置樣式CSS保存一致。
“不使用hover外部CSS樣式怎么實(shí)現(xiàn)hover鼠標(biāo)懸停改變樣式”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。