在css中怎么设置鼠标移上去图片就会动?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在css中怎么设置鼠标移上去图片就会动?相关的知识,希望对你有一定的参考价值。

在css中怎么设置鼠标移上去图片就会动?

参考技术A img:hover /*hover事件,当鼠标移动到图片时触发*/
position: relative;
top: 20px;
right:10px;

谁有鼠标经过文字时显示图片的代码?

这段代码与我网页里的
<link rel="stylesheet" href="css.css" media="all" />
冲突啊,怎么办?

参考技术A <title>鼠标经过效果</title>
</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>本回答被提问者采纳

以上是关于在css中怎么设置鼠标移上去图片就会动?的主要内容,如果未能解决你的问题,请参考以下文章

网页图片链接鼠标移动上去会动一下,如何解决?

css中鼠标没有移上去图片是黑色

a:hover属性,并且设置了他的背景图片及背景颜色,当鼠标移上去时显示正常,但奇怪的是当鼠标移开后,

鼠标移动上去使字体变色,这代码怎么写

js怎么做鼠标移过去会显示隐藏的内容

css怎么设置图片定点旋转?