CSS3鼠标经过动画特效

栏目: CSS3 · 发布时间: 7年前

内容简介:这是一款css3鼠标经过动画特效。在该特效中,当鼠标经过图片时,图片略微放大,底部遮罩层出现,同时图片的描述文字和链接会以动画的方式出现在遮罩层之上,非常炫酷。

这是一款css3鼠标经过动画特效。在该特效中,当鼠标经过图片时,图片略微放大,底部遮罩层出现,同时图片的描述文字和链接会以动画的方式出现在遮罩层之上,非常炫酷。

查看演示 下载源码

HTML结构

示例中,我们使用Bootstrap布局,该css3鼠标经过动画特效的HTML结构如下:

<div class="container">
    <div class="row">
        <div class="col-md-4 col-sm-6">
            <div class="box">
                <img src="images/img-1.jpg">
                <ul class="icon">
                    <li><a href="#"><i class="fa fa-search"></i></a></li>
                    <li><a href="#"><i class="fa fa-link"></i></a></li>
                </ul>
                <div class="box-content">
                    <h3 class="title">Williamson</h3>
                    <span class="post">Web Developer</span>
                </div>
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class="box">
                <img src="images/img-2.jpg">
                <ul class="icon">
                    <li><a href="#"><i class="fa fa-search"></i></a></li>
                    <li><a href="#"><i class="fa fa-link"></i></a></li>
                </ul>
                <div class="box-content">
                    <h3 class="title">Kristiana</h3>
                    <span class="post">Web Designer</span>
                </div>
            </div>
        </div>
    </div>
</div>

CSS样式

然后通过下面的CSS样式来实现该css3鼠标经过动画特效。

.box{
    text-align: center;
    overflow: hidden;
    position: relative;
}
.box:before{
    content: "";
    width: 150%;
    height: 150%;
    position: absolute;
    top: 50%;
    left: 50%;
    background: radial-gradient(rgba(255,255,255,0.1) 15%, transparent 15%) 0 0,
                radial-gradient(rgba(255,255,255,0.1) 15%, transparent 15%) 16px 16px,
                radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 0 1px,
                radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 16px 17px;
    background-size: 32px 32px;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    z-index: 1;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.56s ease 0s;
}
.box:hover:before{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.box img{
    width: 100%;
    height: auto;
    transition: all 0.3s ease 0s;
}
.box:hover img{ transform: scale(1.3); }
.box .box-content{
    width: 100%;
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.box .title{
    font-size: 22px;
    font-weight: 600;
    color: #47ddc8;
    text-transform: uppercase;
    text-shadow: 0 0 2px #000;
    opacity: 0;
    margin: 0 0 5px 0;
    position: relative;
    transform: translateY(100%);
    transition: all 0.5s ease 0s;
}
.box:hover .title{
    opacity: 1;
    transform: translateY(0);
}
.box .post{
    display: block;
    font-size: 14px;
    font-style: italic;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    transform: translateX(-100%) rotateX(90deg);
    transition: all 0.5s ease 0s;
}
.box:hover .post{ transform: translateY(0) rotate(0); }
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease 0s;
}
.box .icon li{
    display: inline-block;
    margin: 0 7px;
    transform: rotateX(90deg);
    transition: all 0.3s ease 0s;
}
.box .icon li:last-child{ transition-delay: 0.2s; }
.box:hover .icon li{ transform: rotateX(0); }
.box .icon li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 5px;
    background: #fff;
    font-size: 17px;
    color: #505050;
    transition: all 0.3s ease 0s;
}
.box .icon li a:hover{
    background: #47ddc8;
    box-shadow: 0 0 10px #000;
    color: #fff;
}
@media only screen and (max-width:990px){
    .box{ margin-bottom: 30px; }
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

代码阅读方法与实践

代码阅读方法与实践

斯平内利斯 / 赵学良 / 清华大学出版社 / 2004-03-01 / 45.00元

代码阅读有自身的一套技能,重要的是能够确定什么时候使用哪项技术。本书中,作者使用600多个现实的例子,向读者展示如何区分好的(和坏的)代码,如何阅读,应该注意什么,以及如何使用这些知识改进自己的代码。养成阅读高品质代码的习惯,可以提高编写代码的能力。 阅读代码是程序员的基本技能,同时也是软件开发、维护、演进、审查和重用过程中不可或缺的组成部分。本书首次将阅读代码作为一项独立课题......一起来看看 《代码阅读方法与实践》 这本书的介绍吧!

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具