Ⅰ html网页中 如何 鼠标经过图片 然后旁边显示字体 或者 在另外一个模块内显示内容
<img src="路径" title="DREAM" alt=""/> title加东西就行了
<html>
<head>
<style>
#container{position:relative;height:200px;width:300px;border:1px solid red;}
#inss{position:absolute;height:30px;width:300px;}
</style>
<script>
function xianshi(){document.getElementById("inss").style.display="block";}
function yincang(){document.getElementById("inss").style.display="none";}
</script>
<head>
<body>
div代码:
<div id="container" onmouseover="xianshi()" onmouseout="yincang()">
<div id="inss">遮罩层</div>
</div>
</body>
</html>
这个是我做的遮罩层的,和你的需求类似,可以稍作修改,实现你的效果,希望可以帮到你!
Ⅲ ppt制作当鼠标移过图片时出现相应文字。需要过程。谢谢
利用三张幻灯片,并给特定对象的添加动作设置(鼠标移过)进行一、二两张幻灯片之间的切换可以达到你所说的效果。
具体方法:
第一张幻灯片:输入文字,对文本框进行动作设置,设置为鼠标移过链接到下一张幻灯片;再选中文字,设置单击鼠标链接到第三张(或指定幻灯片);
第二张幻灯片:同位置同设置的文字(与第一张完全一样,并选中文字,设置单击鼠标链接到第三张或指定幻灯片);图片,不添加效果;利用多边形工具,围绕文本框四周画一空心多边形,呈回字状,文本框处镂空,设置自定义图片效果,填充色随便,透明度100%,边框线无(将此自定义多边形设置为全透明),给此自定义多边形添加动作设置,设置为鼠标移过链接到上一张幻灯片;
放映,是不是可以达到你所说的效果。此种做法的缺陷是只能对一个文本框设置此种效果,如果同一张幻灯片中有多个这种效果,只能用编辑的方式,当然会比较麻烦,因为要考虑不同的热区,设置不同的响应对象。
Ⅳ 谁有鼠标经过文字时显示图片的代码
<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>
Ⅳ html如何实现鼠标悬停显示文字,鼠标移走文字消失。
通过css伪类中的“hover”来实现。
1、新建html文件,在body标签中添加一个div标签,div标签里面嵌套一个p标签,然后添加p标签内容,这里以“演示文本”为例:
Ⅵ DIV CSS鼠标悬停在没有文字内容图片上时图片下方显示文字
加个 title 试试,或者是 写个 浮层
Ⅶ 网页中鼠标停留在图片上时会显示文字
<IMG
id=logo
alt=logo
src="images/logo.png">
这样当鼠标悬停在图片上面就会浮现alt=的内容,也就是logo
Ⅷ div+css 鼠标移到图片上显示文字内容
1、首先输入:
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8"/>
<title>鼠标悬停图片上显示文字在线演示www.divcss5.com</title>
<style>
img{border:0}/*css注释说明:设置图片边框为0*/
body{behavior:url("csshover.htc");text-align:center;}/*css注释说明:兼容ie6支持标签使用hover*/
Ⅸ 如何在图片上制作鼠标滑过显示文字的效果
<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>
这个是鼠标经过文字,出现图片,不过效果是一样的,只要你把图片和文字的位置交换一下就okl了
Ⅹ 鼠标移上去显示文字跟图片
你查一下javascript的鼠标事件
onmousedown 当元素上按下鼠标按钮时触发。
onmousemove 当鼠标指针移动到元素上时触发。
onmouseout 当鼠标指针移出元素时触发。
onmouseover 当鼠标指针移动到元素上时触发。
onmouseup 当在元素上释放鼠标按钮时触发。
给个建议,自己去查,这些东西网上都有资源,增加自己的动手能力
指的是自己解决能力的能力,很多人看中这点