CSS3鼠标悬停图标导航动画特效代码

版权:原创 更新时间:1年以上
[该文章底部包含文件资源,可根据自己情况,决定是否下载资源使用,时间>金钱,如有需要,立即查看资源]

以下是 CSS3鼠标悬停图标导航动画特效代码 的示例演示效果:

当前平台(PC电脑)
  • 平台:

部分效果截图:

CSS3鼠标悬停图标导航动画特效代码

HTML代码(index.html):

<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>CSS3鼠标悬停图标导航动画特效</title>

<link href="css/index.min.css" rel="stylesheet" />

</head>
<body>
<br><br><br><br>
<section class="business active">
	<div class="box">
		<ul class="items list-inline">
			<li class="pc">
				<u class="cl"></u>
				<u class="cr"></u>
				<i></i><strong>高端定制网站</strong>
				<p>企业高端定制网站设计<br />彰显品牌形象</p>
			</li>
			<li class="mobi">
				<u class="cl"></u>
				<u class="cr"></u>
				<i></i><strong>移动网站建设</strong>
				<p>定制手机网站 / 微网站制作<br />布局移动互联网</p>
			</li>
			<li class="sys">
				<u class="cl"></u>
				<u class="cr"></u>
				<i></i><strong>业务系统研发</strong>
				<p>基于 B/S 架构的系统研发<br />让业务办公轻松自如</p>
			</li>
			<li class="app">
				<u class="cl"></u>
				<u class="cr"></u>
				<i></i><strong>APP应用程序</strong>
				<p>基于 iOS / Android 应用开发<br />掌控智能终端时代</p>
			</li>
			<li class="host">
				<u class="cl"></u>
				<u class="cr"></u>
				<i></i><strong>服务器运维</strong>
				<p>我们不只提供云硬件和网络<br />更加注重技术运维</p>
			</li>
		</ul>
	</div>
</section>
</body>
</html>








CSS代码(index.min.css):

@charset "utf-8";*{padding:0;margin:0;}
a,a:hover{text-decoration:none;}
section.business{background:url(../images/wallpaper2.jpg) 50% bottom;}
.business .box{width:1200px;margin:0 auto;position:relative;-webkit-transition:all .3s ease-in-out 0s;-moz-transition:all .3s ease-in-out 0s;-ms-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;}
.business .box ul.items{margin:0 auto;}
.business .box ul.items li{width:200px;height:300px;margin:0 8px;background:url(../images/bg_green.png) no-repeat 0px 400px;overflow:hidden;display:inline-block;}
.business .box ul.items li i{display:block;position:relative;margin:0 auto;margin-top:43px;height:69px;}
.business .box ul.items li.pc i{width:69px;background:url(../images/words.png) no-repeat -245px -357px;}
.business .box ul.items li.mobi i{width:64px;background:url(../images/words.png) no-repeat -416px -291px;}
.business .box ul.items li.sys i{width:76px;background:url(../images/words.png) no-repeat -415px -362px;}
.business .box ul.items li.app i{width:74px;background:url(../images/words.png) no-repeat -244px -439px;}
.business .box ul.items li.host i{width:79px;background:url(../images/words.png) no-repeat -420px -439px;}
.business .box ul.items li u{display:block;position:absolute;width:156px;height:156px;margin-left:22px;background:url(../images/words.png) no-repeat 0px -363px;-webkit-transition:all .5s ease-in-out 0s;-moz-transition:all .5s ease-in-out 0s;-ms-transition:all .5s ease-in-out 0s;-o-transition:all .5s ease-in-out 0s;transition:all .5s ease-in-out 0s;}
.business .box ul.items li u.cl{clip:rect(0px,156px,-10px,78px);}
.business.active .box ul.items li u.cl{clip:rect(0px,156px,156px,78px);}
.business .box ul.items li u.cr{clip:rect(156px,78px,156px,0px);}
.business.active .box ul.items li u.cr{clip:rect(0px,78px,156px,0px);}
.business .box ul.items li strong{display:block;margin-top:70px;font-size:16px;font-weight:normal;text-align:center;}
.business .box ul.items li p{position:relative;top:200px;color:White;font-family:Arial,"宋体";font-size:12px;line-height:20px;text-align:center;}
.business .box ul.items li:hover{background-position:0px 0px;-webkit-transition:all .5s ease-in-out .3s;-moz-transition:all .5s ease-in-out .3s;-ms-transition:all .5s ease-in-out .3s;-o-transition:all .5s ease-in-out .3s;transition:all .5s ease-in-out .3s;}
.business .box ul.items li:hover i{-webkit-transition:all .5s ease-in-out .4s;-moz-transition:all .5s ease-in-out .4s;-ms-transition:all .5s ease-in-out .4s;-o-transition:all .5s ease-in-out .4s;transition:all .5s ease-in-out .4s;}
.business .box ul.items li.pc:hover i{background:url(../images/words.png) no-repeat -168px -357px;}
.business .box ul.items li.mobi:hover i{background:url(../images/words.png) no-repeat -337px -291px;}
.business .box ul.items li.sys:hover i{background:url(../images/words.png) no-repeat -327px -362px;}
.business .box ul.items li.app:hover i{background:url(../images/words.png) no-repeat -164px -439px;}
.business .box ul.items li.host:hover i{background:url(../images/words.png) no-repeat -335px -439px;}
.business .box ul.items li:hover u.cl{clip:rect(0px,156px,-10px,78px);}
.business .box ul.items li:hover u.cr{clip:rect(156px,78px,156px,0px);}
.business .box ul.items li:hover strong{color:White;-webkit-transition-delay:.4s;-moz-transition-delay:.4s;-ms-transition-delay:.4s;-o-transition-delay:.4s;transition-delay:.4s;}
.business .box ul.items li:hover p{top:20px;-webkit-transition:all .3s ease-in-out .5s;-moz-transition:all .3s ease-in-out .5s;-ms-transition:all .3s ease-in-out .5s;-o-transition:all .3s ease-in-out .5s;transition:all .3s ease-in-out .5s;}
.business .box label{display:block;margin:0 auto;margin-top:-40px;width:297px;height:21px;background:url(../images/words.png) no-repeat 0px -333px;}
section.cases{background:url(../images/wallpaper3.jpg);}
}
附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
69.41 KB
Html Js 菜单导航特效6
最新结算
股权转让协议意向书模板
类型: .docx 金额: CNY 2.23¥ 状态: 待结算 详细>
股权转让协议意向书模板
类型: .docx 金额: CNY 0.28¥ 状态: 待结算 详细>
CSS3图片向上3D翻转渐隐消失特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
CSS3图片向上3D翻转渐隐消失特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
.net c# 将金额转人名币大写金额
类型: .rar 金额: CNY 2.39¥ 状态: 待结算 详细>
.net c# 将金额转人名币大写金额
类型: .rar 金额: CNY 0.3¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 2.23¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 0.28¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 2.23¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 0.28¥ 状态: 待结算 详细>
我们力求给您提供有用的文章,再此基础上,会附加营收资源,不做任何广告,让平台可以更好发展 若您发现您的权利被侵害,或使用了您的版权,请发邮件联系 sunlifel@foxmail.com ggbig觉得 : 不提供源码的文章不是好文章
合作伙伴
联系我们
  • QQ:21499807
  • 邮箱:sunlifel@foxmail.com
  • QQ扫一扫加QQ
    QQ扫一扫
Copyright 2023-2024 ggbig.com·皖ICP备2023004211号-1
打赏文章