我在我的开发站点http://www.new.ianroyal.co上使用 onmouseover 来实现主站点徽标的悬停效果。
onmouseover 会立即更改站点徽标图像,我想知道是否可以在不使用 jQuery 的情况下应用过渡效果(淡入或通常减慢过渡速度)。
这是我的代码:
<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>
我已经搜索和搜索,但似乎唯一的解决方案是使用 jQuery,我还没有很好地掌握它。
谢谢