鼠标放到网页面上的文字时 弹出一个解释用的文字框 这个效果用css 、div 、javascript 怎么做?

我需要完整的源代码 烦劳各位动动手
我对这方面的知识不是很了解
我新建了一个层 如何利用行为面板将这个效果实现呢?》

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS Tooltips</title>
<style type="text/css">
<!--

/* pretty stuff
================================== */

body {
font-family: "Myriad Pro", Frutiger, "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Verdana, sans-serif;
line-height: 1.2;
}

/* css tooltip
================================== */

a.tooltip {
position: relative;
}

a.tooltip span {
display: none;
}

a.tooltip:hover {
font-size: 100%; /* Fixes bug in IE5.x/Win */
}

a.tooltip:hover span {
display:block;
position:absolute;
top:1em;
left:2em;
padding: 0.2em 0.6em;
border:1px solid #996633;
background-color:#FFFF66;
color:#000;
}

-->
</style>
</head>

<body>
<p><a href="#" class="tooltip">Andy Budd<span> (This website rocks) </span></a> is a web developer based in Brighton England.</p>

</body>
</html>
温馨提示:内容为网友见解,仅供参考
第1个回答  2009-07-23
你可以用Dreamweaver中的层+行为面板实现 添加鼠标动作onmouseover,很简单的
第2个回答  2009-07-23
写js了,用onmouseover可以搞定了

你可以去网上搜索下,提示框的js。在这里懒得发了

Warning: Invalid argument supplied for foreach() in /www/wwwroot/aolonic.com/skin/templets/default/contents.html on line 45
相似回答
大家正在搜