Change the img image through the onmouseover TAB

  • 2020-03-30 01:43:14
  • OfStack

 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title> TAB implementation img Image transformation </title> 
<style type="text/css"> 
#main{ height:420px; width:400px;} 
#head{ 
width:400px; 
height:52px; 
position:absolute; 
left:10px; 
top: -12px; 
background-color:green; 
} 
#head li{ float:left; list-style:none; width:85px;} 
#content{ 
width:400px; 
height:350px; 
background-color:#FC6; 
text-align:center; 
position:absolute; 
top:36px; 
left: 10px; 
} 
</style> 
</head> 

<body> 
<div id="main"> 
<div id="head"> 
<ul> 
<li id="tab1" onmouseover="show(1)" style="background-color:#FFF"> Picture a </li> 
<li id="tab2" onmouseover="show(2)"> Picture 2 </li> 
<li id="tab3" onmouseover="show(3)"> Picture 3 </li> 
<li id="tab4" onmouseover="show(4)"> Picture 4 </li> 
</ul> 
</div> 
<div id="content"> 
<p id="p1"><img src=" The picture 0"/></p> 
<p id="p2" style="display:none;"><img src= "The picture 1 " ></p> 
<p id="p3" style="display:none;"><img src=" The picture 2" height="320px;"/></p> 
<p id="p4" style="display:none;"><img src=" The picture 3"/></p> 
</div> 
</div> 
</body> 
<script> 
function show(n){ 
for(var i=1;i<=4;i++){ 
document.getElementById("tab"+i).style.backgroundColor='green'; 
document.getElementById("p"+i).style.display='none'; 
//Display implements the control of whether the contents are hidden or not, when none is hidden
} 
document.getElementById("tab"+n).style.backgroundColor='white'; 
document.getElementById("p"+n).style.display='block'; 
//When the block, hidden can be shown
} 
</script> 
</html> 

Related articles: