谁有鼠标经过文字时显示图片的代码?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了谁有鼠标经过文字时显示图片的代码?相关的知识,希望对你有一定的参考价值。
这段代码与我网页里的
<link rel="stylesheet" href="css.css" media="all" />
冲突啊,怎么办?
</head>
<body>
<style type="text/css">
.thumbnail
position: relative;
z-index: 0;
.thumbnail:hover
background-color: transparent;
z-index: 50;
.thumbnail span /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 1px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
.thumbnail span img /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
.thumbnail:hover span /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 55px; /*position where enlarged image should offset horizontally */
</style>
<a class="thumbnail" href=链接>文字在这呢 <span><img src="图片地址" alt="图片在这" width="110" border="0"></span></a>
</body>
</html>本回答被提问者采纳
以上是关于谁有鼠标经过文字时显示图片的代码?的主要内容,如果未能解决你的问题,请参考以下文章
在Dreamweaver中,如何实现鼠标经过文字时在鼠标旁边自动出现图片?