Dreamweaver8如何让鼠标经过图片的时候在旁边跳出另一张图片
就是当鼠标经过某一张图片的时候,它会在旁边跳出另外一张大图,而鼠标经过的那张图片要比旁边的那张小许多,而且是要在没有点击时就自动在旁边出现的那种,就是在原页面出现的效果。...
就是当鼠标经过某一张图片的时候,它会在旁边跳出另外一张大图,而鼠标经过的那张图片要比旁边的那张小许多,而且是要在没有点击时就自动在旁边出现的那种,就是在原页面出现的效果。我用了许多方法都没有用,希望能有高手来指点指点,谢谢了。急救的啊~~~~
展开
展开全部
<script>
function a(x){
if(x=="tab1"){
document.all.div1.style.display="block";
}
}
function b(){
document.all.div1.style.display="none";
}
</script>
<table width="120" height="32" border="0" align="center" onmouseover="a(this.name);" onmouseout="b()" id="tab1" name="tab1">
<tr>
<td align="center" bgcolor="#CCFFCC" onmouseover="if(true) this.style.cursor='hand';" ><strong>副经理</strong></td>
</tr>
</table>
<table width="289" height="36" border="0" align="center" id="div1" style="display:none" name="div1">
<tr>
<td width="92" align="center" bgcolor="#99FFFF">生产副经理</td>
<td width="90" align="center" bgcolor="#99FFFF">财务副经理</td>
<td width="93" align="center" bgcolor="#99FFFF">合同副经理</td>
</tr>
</table>
看看效果,如果不是你想要的,你就照这思路自己改改吧!
function a(x){
if(x=="tab1"){
document.all.div1.style.display="block";
}
}
function b(){
document.all.div1.style.display="none";
}
</script>
<table width="120" height="32" border="0" align="center" onmouseover="a(this.name);" onmouseout="b()" id="tab1" name="tab1">
<tr>
<td align="center" bgcolor="#CCFFCC" onmouseover="if(true) this.style.cursor='hand';" ><strong>副经理</strong></td>
</tr>
</table>
<table width="289" height="36" border="0" align="center" id="div1" style="display:none" name="div1">
<tr>
<td width="92" align="center" bgcolor="#99FFFF">生产副经理</td>
<td width="90" align="center" bgcolor="#99FFFF">财务副经理</td>
<td width="93" align="center" bgcolor="#99FFFF">合同副经理</td>
</tr>
</table>
看看效果,如果不是你想要的,你就照这思路自己改改吧!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询