admin管理员组文章数量:1349174
I want to hover on an image, and have a div with text in it to fade in. Simple.
Sidenote: I want it to be style-able by CSS. (Kind of a given.) Also, I tried using some examples but I am in a hurry so please and thankyou.
I want to hover on an image, and have a div with text in it to fade in. Simple.
Sidenote: I want it to be style-able by CSS. (Kind of a given.) Also, I tried using some examples but I am in a hurry so please and thankyou.
Share Improve this question edited Oct 7, 2010 at 1:25 Darlene Conner asked Oct 7, 2010 at 1:09 Darlene ConnerDarlene Conner 11 gold badge1 silver badge1 bronze badge 05 Answers
Reset to default 2If your using jQuery, Something like:
$('element').hover(function()
{
$('div').animate({ 'opacity': 1 });
});
Try this:
<div class="hover">
<img src="http://www.google./intl/en_ALL/images/srpr/logo1w.png" alt="google" />
</div>
<div class="fade" style="display:none">
This text will Fade In and Out.
</div>
$(document).ready(function()
{
$("div.hover").hover(
function () {
$("div.fade").fadeIn('slow');
},
function () {
$("div.fade").fadeOut('slow');
}
);
});
Sample code here
By the way, how do you want it to be CSS stylable?
Try this: http://jsfiddle/2WYtS/
You can also use the fadeIn() and fadeOut() methods. Link
Using CSS You can change fade out using opacity
try This
.box{
width: 180px;
text-align: center;
background-color: #fff;
padding: 5px 10px;
z-index: 10;
font-weight: bold;
color:#000;
}
.box:hover{
opacity: 0.7;
}
本文标签: javascriptHow to fade in a div on hoverStack Overflow
版权声明:本文标题:javascript - How to fade in a div on hover? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743855576a2550799.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论