电商商品卡片悬浮选择效果代码

代码语言:html

所属分类:电商

代码描述:电商商品卡片悬浮选择效果代码

代码标签: 悬浮 选择 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

 
<meta charset="UTF-8">

 
 
 
<style>
/* Generals resets and unimportant stuff */
* { margin: 0px; padding: 0px; }
body {
        background: #eaebec;
        font-family: "Open Sans", sans-serif;
}
#view-code{
  color:#48cfad;
  font-size:14px;
  text-transform:uppercase;
  font-weight:700;
  text-decoration:none;
  position:absolute;top:640px; left:50%;margin-left:-35px;
}
#view-code:hover{color:#34c29e;}

/* --- Product Card ---- */
#make-3D-space{
    position: relative;
    perspective: 800px;
    width:340px;
    height:500px;
    transform-style: preserve-3d;
    transition: transform 5s;
    position:absolute;    
    top:80px;
    left:50%;  
    margin-left:-167px;
}
#product-front, #product-back{
        width:335px;
        height:500px;
        background:#fff;
        position:absolute;
        left:-5px;
        top:-5px;
        -webkit-transition: all 100ms ease-out;
       -moz-transition: all 100ms ease-out;
         -o-transition: all 100ms ease-out;
            transition: all 100ms ease-out;
}
#product-back{
        display:none;
        transform: rotateY( 180deg );
}
#product-card.animate #product-back, #product-card.animate #product-front{
        top:0px;
        left:0px;
        -webkit-transition: all 100ms ease-out;
       -moz-transition: all 100ms ease-out;
         -o-transition: all 100ms ease-out;
            transition: all 100ms ease-out;
}
#product-card{
        width:325px;
        height:490px;
        position:absolute;    
        top:10px;
        left:10px;      
        overflow:hidden;
    transform-style: preserve-3d;
        -webkit-transition:  100ms ease-out;
       -moz-transition:  100ms ease-out;
         -o-transition:  100ms ease-out;
            transition:  100ms ease-out;
}
div#product-card.flip-10{
         -webkit-transform: rotateY( -10deg );
         -moz-transform: rotateY( -10deg );
           -o-transform: rotateY( -10deg );
              transform: rotateY( -10deg );
                           transition:  50ms ease-out;                  
}
div#product-card.flip90{
         -webkit-transform: rotateY( 90deg );
         -moz-transform: rotateY( 90deg );
           -o-transform: rotateY( 90deg );
              transform: rotateY( 90deg );
                           transition:  100ms ease-in;                  
}
div#product-card.flip190{
         -webkit-transform: rotateY( 190deg );
         -moz-transform: rotateY( 190deg );
           -o-transform: rotateY( 190deg );
              transform: rotateY( 190deg );
                           transition:  100ms ease-out;                        
}
div#product-card.flip180{
         -webkit-transform: rotateY( 180deg );
         -moz-transform: rotateY( 180deg );
           -o-transform: rotateY( 180deg );
              transform: rotateY( 180deg );
                           transition:  150ms ease-out;                        
}
#product-card.animate{
        top:5px;
        left:5px;
        width:335px;
        height:500px;
        box-shadow:0px 13px 21px -5px rgba(0, 0, 0, 0.3);
        -webkit-transition:  100ms ease-out;
       -moz-transition:  100ms ease-out;
         -o-transition:  100ms ease-out;
            transition:  100ms ease-out;
}
.stats-container{
        background:#fff;        
        position:absolute;
        top:386px;
        left:0;
        width:265px;
        height:300px;
        padding:27px 35px 35px;
        -webkit-transition: all 200ms ease-out;
       -moz-transition: all 200ms ease-out;
         -o-transition: all 200ms ease-out;
            transition: all 200ms ease-out;
}
#product-card.animate .stats-container{
        top:272px;
        -webkit-transition: all 200ms ease-out;
       -moz-transition: all 200ms ease-out;
         -o-transition: all 200ms ease-out;
            transition: all 200ms ease-out;
}
.stats-container .product_name{
        font-size:22px;
        color:#393c45;  
}
.stats-container p{
        font-size:16px;
        color:#b1b1b3;  
        padding:2px 0 20px 0;
}
.stats-container .product_price{
        float:right;
        color:#48cfad;
        font-size:22px;
        font-weight:600;
}
.image_overlay{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background:#48daa1;
        opacity:0;      
}
#product-card.animate .image_overlay{
        opacity:0.7;    
        -webkit-transition: all 200ms ease-out;
       -moz-transition: all 200ms ease-out;
         -o-transition: all 200ms ease-out;
            transition: all 200ms ease-out;
}
.product-options{
        padding:2px 0 0;
}
.product-options strong{
        font-weight:700;
        color:#393c45;
        font-size:14px;
}
.product-options span{  
        color:#969699;
        font-size:14px;
        display:block;
        margin-bottom:8px;
}
#view_details{  
        position:absolute;
        top:112px;
        left:50%;
        margin-left:-85px;      
        border:2px solid #fff;
        color:#fff;
        font-size:19px;
        text-align:center;
        text-transform:uppercase;
        font-weight:700;
        padding:10px 0;
        width:172px;    
        opacity:0;
        -webkit-transition: all 200ms ease-out;
       -moz-transition: all 200ms ease-out;
         -o-transition: all 200ms ease-out;
            transition: all 200ms ease-out;
}
#view_details:hover{    
        background:#fff;
        color:#48cfad;
        cursor:pointer;

}
#product-card.animate #view_details{
        opacity:1;
        width:152px;
        font-size:15px;
        margin-left:-75px;
        top:115px;
        -webkit-transition: all 200ms ease-out;
       -moz-transition: all 200ms ease-out;
         -o-transition: all 200ms ease-out;
            transition: all 200ms ease-out;            
}
div.colors div{
        margin-top:3px;
        width:15px;
        height:15px;    
        margin-right:5px;
        float:left;
}
div.colors div span{
        width:15px;
        height:15px;
        display:block;
        border-radius:50%;
}
div.colors div span:hover{
        width:17px;
        height:17px;
        margin:-1px 0 0 -1px;
}
div.c-blue span{background:#6e8cd5;}
div.c-red span{background:#f56060;}
div.c-green span{background:#44c28d;}
div.c-white span{
        background:#fff;
        width:14px;
        height:14px;
        border:1px solid #e8e9eb;
}
div.shadow{
        width:335px;height:520px;
        opacity:0;
        position:absolute;
        top:0;
        left:0;
        z-index:3;
        display:none;
        background: -webkit-linear-gradient(left,rgba(0,0,0,0.1),rgba(0,0,0,0.2));
    background: -o-linear-gradient(right,rgba(0,0,0,0.1),rgba(0,0,0,0.2));
    background: -moz-linear-gradient(right,rgba(0,0,0,0.1),rgba(0,0,0,0.2));
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.2));
}
#product-back div.shadow{
        z-index:10;
        opacity:1;
        background: -webkit-linear-gradient(left,rgba(0,0,0,0.2),rgba(0,0,0,0.1));
    background: -o-linear-gradient(right,rgba(0,0,0,0.2),rgba(0,0,0,0.1));
    background: -moz-linear-gradient(ri.........完整代码请登录后点击上方下载按钮下载查看

网友评论0