[問題] behavier滑鼠變換影像可以換掉CSS的背景影像嗎?
如標題
我想用滑鼠變換影像修改CSS裡的背景影像
因為我背景是一張照片(bg.png) 一個人臉上兩片柳丁
想用柳丁(left-orange.png)當按鈕 滑鼠滑進之後 柳丁維持原色 背景變黑白
我存了一張黑白照片在image資料夾了 (bgbw.png)
語法如下
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"" rel="nofollow">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="" rel="nofollow">http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HangIntheAir</title>
<style type="text/css">
.bg {
background-repeat: no-repeat;
background-position: center center;
height: 600px;
width: 800px;
margin: 0 auto;
padding-top: 35px;
z-index: 0;
background-image: url(image/bg.png);
}
.left {
height: 138px;
width: 125px;
padding-top: 149px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 247px;
float: left;
z-index: 1;
}
</style>
<script type="text/javascript">
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++)
x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length;
i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document;
if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++)
x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++)
x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array;
for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc)
x.oSrc=x.src; x.src=a[i+2];}
}
</script>
</head>
<body onload="MM_preloadImages('image/bgbw.png')">
<div class="bg" id="bgcolor">
<div class="left"><a href="#" onmouseout="MM_swapImgRestore()"
onmouseover="MM_swapImage('bgcolor','','image/bgbw.png',1)"><img
src="image/left-orange.png" alt="表演訊息" name="Image1" width="125"
height="138" border="0" id="Image1" /></a>
</div>
</div>
</body>
</html>
請問是不是要在bgcolor這個ID後面再指定background-image呢?
該怎麼寫呢?
感謝大家幫忙解惑
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 114.136.204.138