嘗試讓我的代碼在「spiral.svg」懸停時將背景圖像更改爲「color.jpg」。我想我越來越近了,肯定錯過了一些東西,但不知道那是什麼!通過「懸停」在css中的div來更改背景圖像
HTML
<div class ="spiral">
<img src="spiral.svg">
</div>
CSS
img {
max-width: ???;
max-height: ???;
}
.spiral:hover {
background:url('color.jpg') center;
z-index: some positive number higher than my orig background image?
}
body {
background:url('orig.jpeg') center;
z-index: -60;
}
'Z-index'工作時'位置「被指定。 – CodeRomeos