jq鼠标经过之后图片效果(兼容ie8)

一、鼠标经过图标变换

<script src="images/jquery.1.9.1.js"></script>
<style type="text/css">
.xxgk_list li {
display: inline-block;
float: left;
position: relative;
margin-top: 7px;
}
.xxgk_list li a {
display: inline-block;
width: 173px;
height: 58px;
text-align: center;
color: #fff;
font-size: 16px;
}
.xxgk_list li p {
position: absolute;
z-index: 1;
background-image: url(images/2017hd_zdlyxxgk_list_bg.png);
background-repeat: no-repeat;
width: 173px;
height: 58px;
left: 0;
}
.xxgk_list_1 a p {
background-position: 0px 0px;
}
.xxgk_list_2 a p {
background-position: -181px 0px;
}
.xxgk_list_3 a p {
background-position: 0px -68px;
}
.xxgk_list_4 a p {
background-position: -181px -68px;
}
.xxgk_list_5 a p {
background-position: 0px -136px;
}
.xxgk_list_6 a p {
background-position: -181px -136px;
}
</style>
</head>
<body>
<div class="xxgk_list">
<div class="xxgk_list">
<ul id="xxgkList">
<li class="xxgk_list_1">
<a href="" target="_blank">
<p style="width: 173px; display: block; height: 58px; top: 0px; left: 0px; opacity: 1; border-radius: 0px; overflow: hidden;"></p>
</a>
</li>
<li class="xxgk_list_2 mrLeft">
<a href="" target="_blank">
<p style="width: 173px; display: block; height: 58px; top: 0px; left: 0px; opacity: 1; overflow: hidden; border-radius: 0px;"></p>
</a>
</li>
<li class="xxgk_list_3 ">
<a href="" target="_blank">
<p style="overflow: hidden; width: 173px; display: block; height: 58px; top: 0px; left: 0px; opacity: 1; border-radius: 0px;"></p>
</a>
</li>
<li class="xxgk_list_4 mrLeft">
<a href="./xxgk/wgkzl/" target="_blank">
<p style="overflow: hidden; width: 173px; display: block; height: 58px; top: 0px; left: 0px; opacity: 1; border-radius: 0px;"></p>
</a>
</li>
<li class="xxgk_list_5 ">
<a href="./grfw/" target="_blank">
<p style="width: 173px; display: block; height: 58px; top: 0px; left: 0px; opacity: 1; border-radius: 0px; overflow: hidden;"></p>
</a>
</li>
<li class="xxgk_list_6 mrLeft">
<a href="http://wsbs.gz.gov.cn/gz/hotline/gotoIndex.action" target="_blank">
<p style="overflow: hidden; width: 173px; display: block; height: 58px; top: 0px; left: 0px; opacity: 1; border-radius: 0px;"></p>
</a>
</li>
</ul>
</div>
</div>
</body>

<script type="text/javascript">
//首页图标效果
$(‘#xxgkList li a‘).hover(function(){
$(this).find(‘p‘).stop(true).animate({width:‘170px‘,height:‘55px‘,top:‘5‘,left:‘5‘,opacity:0.5}, 200).animate({width:‘170px‘,height:‘55px‘,top:‘0‘,left:‘0‘,‘border-radius‘:‘0px‘,opacity:1}, 300);
},function(){
$(this).find(‘p‘).stop(true).animate({width:‘173px‘,height:‘58px‘,top:‘0‘,left:‘0‘,‘border-radius‘:‘0‘,opacity:1}, 500);
})
</script>
</html>

二、鼠标经过图标旋转

<!--效果二:鼠标经过时图标旋转-->
<div class="section00CenterLeft_list">
<ul>
<li class="section00CenterLeft_list1"><a href="" target="_blank"><em class="icon"></em><span>权责清单</span></a>
</li>
<li class="section00CenterLeft_list2" style="margin-left:21px;"><a href="" target="_blank">
<em class="icon"></em><span style="right:10px">信用信息双公示</span></a>
</li>
<li class="section00CenterLeft_list3" style="margin-left:21px;"><a href="" target="_blank">
<em class="icon"></em><span>电子地图</span></a>
</li>
<li class="section00CenterLeft_list4" style="margin-left:21px;"><a href="" target="_blank">
<em class="icon"></em><span style="right:15px">人才招聘信息</span></a>
</li>
</ul>
</div>

css样式:

/*例子二:鼠标经过图标旋转*/

.section00CenterLeft_list {
display: inline-block;
margin-top: 21px;
}
.section00CenterLeft_list li {
display: inline-block;
float: left;
width: 182px;
height: 67px;
position: relative;
}
.section00CenterLeft_list li a {
display: inline-block;
width: 100%;
height: 100%;
line-height: 67px;

}
.section00CenterLeft_list li a:hover {

}
.section00CenterLeft_list li a span {
position: absolute;
right: 30px;
color: #135ca9;
font-size: 16px;
font-weight: bold;
}
.section00CenterLeft_list li a .icon {
display: inline-block;
float: left;
width: 80px;
height: 67px;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.section00CenterLeft_list li a:hover .icon {
-webkit-transform: rotateY(360deg);
-moz-transform: rotateY(360deg);
-ms-transform: rotateY(360deg);
-o-transform: rotateY(360deg);
transform: rotateY(360deg);
}
.section00CenterLeft_list1 a .icon {
background: url(images/section00CenterLeft_list1.png) 35px center no-repeat;
}
.section00CenterLeft_list2 a .icon {
background: url(images/section00CenterLeft_list2.png) 15px center no-repeat;
}
.section00CenterLeft_list3 a .icon {
background: url(images/section00CenterLeft_list3.png) 35px center no-repeat;
}
.section00CenterLeft_list4 a .icon {
background: url(images/section00CenterLeft_list4.png) 20px center no-repeat;
}

时间: 2025-01-09 17:09:50

jq鼠标经过之后图片效果(兼容ie8)的相关文章

css hover图片hover效果兼容ie8

例子: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> *{ margin:0; padding:0; box-sizing:border-box; } .icon-img{ display: block; margin-top: 5px; w

鼠标悬停放大图片效果

设置鼠标移入移出事件onmouseover="over(this,this.src)" onmouseout="out(this)" <div id="divbigimage" style="display:none;width:300px;height:300px;position:absolute;"> <img src="" id="big" style=&quo

官方demo修改后的webuploader上传预览图片(兼容IE8) github下载回来的有问题

注意!!!!! 不要使用GitHub上下载回来的webuploader.js,下载回来的webuploader.js会报错  fn 未定义 方便的话去看百度官网的demo 浏览器将其抓包获取webuploader.js文件 <!DOCTYPE html> <html lang="zh-CN"> <head>     <meta charset="UTF-8">     <title>WebUploader演

12种炫酷的CSS3鼠标滑过图片遮罩层动画特效

InContent是一款效果非常炫酷的CSS3鼠标滑过图片遮罩层动画特效.这组特效共有12种不同的鼠标滑过图片效果,分为滑动.旋转和翻转3大类.它可以在支持CSS3 transition和transform属性的现代浏览器中正常工作. 在线预览   源码下载 使用方法 使用该CSS3鼠标滑过图片遮罩层动画特效需要在页面中引入由SASS编译的sass-compiled.css文件或由LESS编译的less-compiled.css文件. <link rel="stylesheet"

向上下左右不间断无缝滚动图片的效果(兼容火狐和IE)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-

[读码][js,css3]能感知鼠标方向的图片遮罩效果

效果图: 无意间看到过去流行的一个效果:[能感知鼠标方向的图片遮罩效果]近来不忙,就仔细的看了一看看到后来发现,网上有好多版本,谁是原著者似乎已经无法考证.读码就要读比较全面的,读像是原著的代码.代码随然不难,不过要能想到这个创意,并成功应用却很难! 另外,对于初学者,这也是不错的学习例子.含Jquery插件写法,css3等 英文教程:http://tympanus.net/TipsTricks/DirectionAwareHoverEffect/源码下载:http://tympanus.net

鼠标经过地方图片变亮,其他地方图片变暗效果

很久没做,原理都有点忘记了. 效果的原理 原理其实很简单,首先给一个黑色的背景,通过降低图片的透明度,让黑色背景呈现出来,图片看起来就更暗.鼠标移到图片1,那么就让除了图片1的其他图片的透明度降低,让他们看起来更暗,让图片1看起来显得更亮 JS.CSS.JQ都可以使用 在这里记录下原理..

鼠标移动链接上,滑动展开/隐藏图片效果

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Typ

10款基于jQuery实现的鼠标悬停九宫格图片延伸效果

<p><b>1.jQuery多张图片上下叠加切换插件</b></p><p>之前我们已经向大家分享过一款jQuery/CSS3洗牌效果的图片叠加切换应用,本文介绍的这款jQuery多张图片上下叠加切换插件也类似,我们可以将预先加载好的图片按不同的角度叠加起来,点击上下切换按钮时即可将图片上下切换至其他图片后面,效果非常不错.</p><p><img src="http://www.html5tricks.com