hover effect style : demo 175

Williamson

Web Developer

Kristiana

Web Designer

Steve Thomas

Web Developer

HTML

                        

Williamson

Web Developer

Kristiana

Web Designer

CSS

                        .box{
                            overflow: hidden;
                            box-shadow: 0 0 3px rgba(0,0,0,0.3);
                            position: relative;
                        }
                        .box:before{
                            content: "";
                            width: 100%;
                            height: 100%;
                            background: rgba(0,0,0,0.7);
                            position: absolute;
                            bottom: -100%;
                            left: 0;
                            transition: all 0.3s ease 0s;
                        }
                        .box:hover:before{ bottom: 0; }
                        .box img{
                            width: 100%;
                            height: auto;
                        }
                        .box .box-content{
                            width: 100%;
                            padding: 0 30px;
                            position: absolute;
                            bottom: 15px;
                            left: -100%;
                            transition: all 0.3s ease 0.2s;
                        }
                        .box:hover .box-content{ left: 0; }
                        .box .title{
                            font-size: 22px;
                            font-weight: 700;
                            color: #1abc9c;
                            letter-spacing: 1px;
                            text-transform: uppercase;
                            margin: 0 0 7px;
                        }
                        .box .post{
                            display: block;
                            font-size: 15px;
                            font-weight: 600;
                            font-style: italic;
                            color: #fff;
                            margin-bottom: 15px;
                        }
                        .box .icon{
                            padding: 0;
                            margin: 0;
                            list-style: none;
                            position: absolute;
                            top: 20px;
                            right: -100%;
                            transition: transform 0.3s ease 0.3s;
                        }
                        .box:hover .icon{ right: 20px; }
                        .box .icon li{
                            transform: translate3d(600px, 0px, 0px);
                            transition: all 0.3s ease 0.3s;
                        }
                        .box .icon li:last-child{ transition-delay: 0.4s; }
                        .box:hover .icon li{ transform: translate3d(0,0,0); }
                        .box .icon li a{
                            display: block;
                            width: 45px;
                            height: 45px;
                            line-height: 45px;
                            background: #fff;
                            text-align: center;
                            font-size: 22px;
                            color: #000;
                            margin-bottom: 5px;
                            transition: all 0.3s ease 0s;
                        }
                        .box .icon li a:hover{
                            background: #1abc9c;
                            color: #fff;
                        }
                        @media only screen and (max-width:990px){
                            .box{ margin-bottom: 30px; }
                        }
                    
License Terms