CSS可以實現(xiàn)點擊圖片隱藏功能,具體實現(xiàn)方法如下
<html> <head> <style> img{ cursor:pointer; } img:hover + .hide { display:none; } </style> </head> <body> <img src="example.jpg"> <p class="hide">這是隱藏的內(nèi)容</p> </body> </html>
上述代碼中,鼠標懸停在圖片上時,通過+選擇器選擇圖片后面的隱藏元素,并設(shè)置其display:none,達到隱藏的效果。