div+css 鼠标移到图片上显示文字内容?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div+css 鼠标移到图片上显示文字内容?相关的知识,希望对你有一定的参考价值。
参考技术A1、首先输入:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>鼠标悬停图片上显示文字 在线演示 www.divcss5.com</title>
<style>
imgborder:0/* css 注释说明:设置图片边框为0 */
bodybehavior:url("csshover.htc");text-align:center;/* css注释说明:兼容ie6 支持标签使用hover */
2、然后输入:
.divcss5 position:relative;width:554px; height:346px;margin:0 auto
.divcss5 a,.divcss5 spandisplay:none; text-decoration:none
.divcss5:hovercursor:pointer
.divcss5:hover a.nowcursor:pointer; position:absolute; top:0; width:100%; height:100%;
z-index:100; left:0; display:block;
.divcss5:hover span display:block;position:absolute; bottom:0; left:0;color:#FFF;width:554px;
z-index:10;height:36px; line-height:36px; background:#000;filter:alpha(opacity=60);-moz-opacity:0.5;opacity: 0.5;
/* 设置显示文字定位位置,背景半透明 */
3、然后输入:
</style>
</head>
<body>
<div class="divcss5" style="background:url(imgexp.png)">
<span>文字内容</span>
<a href="#" class="now"> </a>
</div>
<div class="divcss5" style="background:url(imgexp.png)">
<span>欢迎访问DIVCSS5网站</span>
<a href="http://www.divcss5.com/" class="now"> </a>
</div>
</body>
</html>
4、然后就可以了。
CSS如何实现鼠标悬停在图片上底部弹出文字内容?
实现鼠标悬停在图片上底部弹出文字内容的实现方法:HTML代码:
<div id="wrapper">
<img src="http://placehold.it/300x200" class="hover" />
<p class="text">text</p>
</div>
CSS代码:
#wrapper .text
position:relative;
bottom:30px;
left:0px;
visibility:hidden;
#wrapper:hover .text
visibility:visible;
参考技术A 可以将文字和图片包含在a标签中。假设文字使用span 标签,在css中用display隐藏,然后使用a:hover spandisplay:block显示 参考技术B <script src="jquery.min.js"></script>
<style>
.div_1width:200px;height:100px;border:1px #000 solid;position:relative
.div_1 span
width:200px;
height:30px;
background:#f9f9f9;
position:absolute;
top:-100px;
color:#000;
</style>
<div class="div_1">
<span>文字文字</span>
</div>
<script>
$(".div_1").bind(
mouseover:function()$(".div_1 span").css("top","70px");,
mouseout:function()$(".div_1 span").css("top","-100px"); ,
);
</script>
以上是关于div+css 鼠标移到图片上显示文字内容?的主要内容,如果未能解决你的问题,请参考以下文章