以下代码有 2 个单独<div>
的元素,每个元素内部都有一个图像。当我将鼠标悬停在任一 div 上时,背景颜色会淡入然后淡出 - 完美!!
我有这个网页在 Firefox 中运行良好,但是它在 IE 中无法发挥作用,所以我想知道是否有实现相同功能的 jQuery 版本?
如果有帮助,这是一个 jsfiddle:http: //jsfiddle.net/mcgarriers/NJe63/
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.box, .box2 {
float:left;
width:200px;
height:200px;
background:blue;
-webkit-transition: background 1s;
}
.box:hover {
background:red;
transition: background 1s;;
-moz-transition: background 1s;; /* Firefox 4 */
-webkit-transition: background 1s;; /* Safari and Chrome */
-o-transition: background 1s;; /* Opera */
}
.box2:hover {
background:black
}
</style>
</head>
<body>
<div class="box">
<img src="http://www.internetlearningsociety.com/images/logos/google_logo3.jpg" />
</div>
<div class="box2">
<img src="http://www.internetlearningsociety.com/images/logos/google_logo3.jpg" />
</div>
</body>
</html>
jQuery有没有一种简单的方法来复制我试图用上面做的事情?
非常感谢您的任何指点。