^
Dreamweaver CS6鼠标经过文字弹出图片特效怎么做?DW鼠标经过文字弹出图片代码
2017-03-08 12:31:56
在dreamweaver cs6中很多鼠标经过的特效都是可以实现的,上次已经为大家讲解了dreamweaver cs6鼠标经过如何显示隐藏层、DreamWeaver cs6怎么让鼠标经过文字变色?等教程,今天要为大家带来的就是dreamweaver cs6鼠标经过文字弹出图片特效的实现方法。
dreamweaver cs6鼠标经过文字弹出图片特效怎么做?
1.先打开dreamweaver cs6,插入一个div,div背景设置成一张图片
2.在div中输入需要鼠标经过的文字
3.在菜单栏点击“插入”“图像对象”“鼠标经过图像”,
4.插入鼠标经过图像对话框中看到“原始图像”和“鼠标经过图像”项。
5.选择好网页中初始显示图像和鼠标滑过是出现的图像后,点击确定按钮。
DW鼠标经过文字弹出图片代码:
<!DOCTYPE html PUBLIC "- //W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JavaScript 鼠标经过显示图片</title>
</head>
<body>
<style type=text/css>
body {
MARGIN-TOP: 50px; FONT-SIZE: 21px; MARGIN-LEFT: 100px; FONT-FAMILY: "宋体"
}
A {
FONT-WEIGHT: 400; FONT-SIZE: 13px; COLOR: black; TEXT-DECORATION: none
}
A:hover {
FONT-WEIGHT: 400; FONT-SIZE: 13px; COLOR: red; TEXT-DECORATION: underline
}
A:active {
FONT: 12px "宋体"; CURSOR: hand; COLOR: #ff0033
}
</style>
<script>
function show(tips,flag,url){
var my_tips=document.getElementById("mytips");
if(flag){
my_tips.style.display="";
if (url!=null){my_tips.innerHTML="<img src='"+url+"' align=left width=300>"+tips;}
else{ my_tips.innerHTML=tips;}
my_tips.style.left=event.clientX-20;
my_tips.style.top=event.clientY+20;
}else{
my_tips.style.display="none";
}
}
</script>
<div>
<a href="#" tips="最新产品" onmousemove=show(this.tips,1,'http://www.qinpinchang.com/uploadfile/2013/0412/0412051413418_1413.jpg') onmouseout=show(this.tips,0)>最新产品</a>
</div>
<div id=mytips style="position:absolute;width:150;height:16;border:1 gray solid;font-size:13px;background-color:#ffffff;color:red;display:none;filter: progid:DXImageTransform.Microsoft.Shadow(color=#999999,direction=135,strength=3);">
</div>
</body>
</html>
相关阅读