admin管理员组文章数量:1341893
I use onmouseover for hover effects of the main site logo on my dev site .
onmouseover changes the site logo image instantaneously, I was wondering if I could apply a transition effect (fade in, or just generally slow down the transition speed) without using jQuery.
Here is my code:
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" ONMOUSEOVER='ian.src=".png" ' ONMOUSEOUT='ian.src=".png"'>
<img src=".png" NAME="ian" class="header-image" alt="Ian Nelson" />
</a>
I use onmouseover for hover effects of the main site logo on my dev site http://www.new.ianroyal.co.
onmouseover changes the site logo image instantaneously, I was wondering if I could apply a transition effect (fade in, or just generally slow down the transition speed) without using jQuery.
Here is my code:
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" ONMOUSEOVER='ian.src="http://new.ianroyal.co/wp-content/themes/twentytwelve/images/IN-Logo.png" ' ONMOUSEOUT='ian.src="http://new.ianroyal.co/wp-content/themes/twentytwelve/images/IN-Logo1.png"'>
<img src="http://new.ianroyal.co/wp-content/themes/twentytwelve/images/IN-Logo1.png" NAME="ian" class="header-image" alt="Ian Nelson" />
</a>
I've searched and searched but it seems the only solultions are with jQuery which I don't have a good enough grasp of yet.
Thank you
Share edited Apr 25, 2019 at 12:28 leonheess 21.6k19 gold badges94 silver badges136 bronze badges asked Oct 23, 2012 at 21:29 Michael McVerryMichael McVerry 2491 gold badge4 silver badges9 bronze badges5 Answers
Reset to default 3Use css3 transitions.
div {
height: 100px;
width: 100px;
background: url(image1.png) no-repeat;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
}
div:hover {
background-image: url(image2.png)
}
Old browsers will simply not animate the transition.
Demo: http://jsfiddle/elclanrs/jg7G3/
You can use pure CSS3.
.fade {
opacity: 1;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
.fade:hover {
opacity: 0.5;
}
Example taken from here. There are lots of other possibilities but that should be a good start.
However, it will only work with browsers which support CSS3 Transitions. Internet Explorer especially is late to the game, and there are still lots of people out there using it (and older versions of other browsers which don't support CSS3).
If you want a truly cross-browser solution which maximises support for older versions then JQuery really is the way to go. However hard it seems, the time invested in learning to do a fade will really pay off. And it will almost certainly be easier to learn how to do a bit of JQuery than to do an equivalent pure JavaScript solution which would give the same cross-browser patibility that JQuery gives you for free.
Ideally, just use CSS Transitions and the :hover
selector, and leave JS out of it entirely, me ça.
Working example, just provide image1.jpg and image2.jpg in same directory:
<script src="http://ajax.googleapis./ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
<script>
$(function() {
$('img').mouseenter(function(){
$(this).fadeOut('fast', function(){
$(this).attr('src', $(this).data('on'));
$(this).fadeIn();
});
});
$('img').mouseleave(function(){
$(this).fadeOut('fast', function(){
$(this).attr('src', $(this).data('off'));
$(this).fadeIn();
});
});
});
</script>
<img width="100" height="100" src="image1.jpg" data-on="image2.jpg" data-off="image1.jpg">
Learn jQuery. I promise it will make you happy in the long (and short) run. That being said, once you know jQuery, dive back into vanilla js so that you really understand how it works.
For example, your problem in jquery would be as simple as:
$(function() {
$('a').fadeOut();
$('a').attr('src', '{new image path}');
$('a').fadeIn();
});
本文标签: javascriptonmouseover transition effect without jQueryStack Overflow
版权声明:本文标题:javascript - onmouseover transition effect without jQuery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743685076a2521762.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论