編碼的世界 / 優質文選 / 生涯

CSS中使用Hover顯示圖片例子


2022年8月03日
-   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>hover顯示的例子(二維碼)</title>
<style type="text/css">
#QRcodeImg{
background: url(QRcodeImg.png) no-repeat 0px 0px;
width: 150px;
height: 150px;
position: absolute;
**/*可以覆蓋在內容之上,因為采用absolute時,脫離文檔流*/**
z-index:22;
border: 2px solid green;
display: none;
}
a:hover #QRcodeImg{
display:block;
}
</style>
</head>
<body>
<div id="head">
<a href="">二維碼
<div id="QRcodeImg">
</div>
</a>
</div>
<div id="body">
This is content! This is content! This is content! This is content!
</div>
</body>
</html>

該例子用於學習CSS中使用Hover時顯示圖片。
小技巧:在VScode中!回車可以一鍵快速生成HTML。 最近在看《刻意練習》這本書,推薦給大家,共同進步。

熱門文章