請問各位大大,以後有兩張圖片,第一張是滑鼠未移進時,第二張是滑鼠移進時,請問如何撰寫CODE? 應該不是直接放圖片吧?!!
用CSS就可以了
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
/* 設定選單背景圖及選單效果預設值 */
.btn {
display: inline-block;
width: 98px;
height: 40px;
line-height: 40px;
color: white;
background: url(bg.png) right top no-repeat;
text-decoration: none;
text-align: center;
}
.btn:hover {
color: yellow; /* hvoer 進來文字變色的效果 */
}
</style>
</head>
<body>
<div id="nav">
<a href="#" class="btn">公司簡介</a><a href="#" class="btn">友好連結</a>
</div>
</body>
</html>
~
背景圖長這樣