zoukankan      html  css  js  c++  java
  • css3不错的教程

    <!DOCTYPE html>
    <html>
    <head>
    <link rel="stylesheet" href="css/style.css" type="text/css" />
    <meta charset="utf-8" />
    <title>CSS3悬停放大图片两边模糊显示 - 站长素材</title>

    </head>
    <body>
    <br><br><br>

    <div class="wrapper">
    <div class="box">
    <div class="product">
    <span class="name">T-shirt</span>
    <span class="description">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
    </div>
    </div>
    <div class="box">
    <div class="product">
    <span class="name">T-shirt</span>
    <span class="description">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
    </div>
    </div>
    <div class="box">
    <div class="product">
    <span class="name">T-shirt</span>
    <span class="description">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
    </div>
    </div>
    </div>


    </body>
    </html>

     /*css部分*/

    body {
    margin: 0;
    background: #d8f0ea;
    }
    h1, p, span {
    font-family: monospace;
    font-weight: 300;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    }
    h1, h1 + p {
    margin: 2rem 1rem;
    }
    .wrapper {
    max- 60rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3rem;

    /*弹性布局 wrap 多行排列自动换行 flexstart 换行后左侧对其效果*/
    flex-wrap: wrap;
    -webkit-justify-content:flex-start;
    justify-content:flex-start;


    }
    .box {
    15rem;
    height: 20rem;
    padding: 0 2rem 3rem;

    -webkit-transition: opacity 0.5s linear 0.3s,
    -webkit-transform 0.3s linear 0s,
    -webkit-filter 0.5s linear 0.3s;
    transition: opacity 0.5s linear 0.3s,
    -webkit-transform 0.3s linear 0s,
    -webkit-filter 0.5s linear 0.3s;

    transition: transform 0.3s linear 0s,
    filter 0.5s linear 0.3s,
    opacity 0.5s linear 0.3s;

    transition:
    transform 0.3s linear 0s,
    filter 0.5s linear 0.3s,
    opacity 0.5s linear 0.3s,

    -webkit-transform 0.3s linear 0s,
    -webkit-filter 0.5s linear 0.3s;
    /*transform-origin: top center;*/
    }
    .product {
    position: relative;
    100%;
    height: 100%;
    border-radius: 0.2rem;
    background-image: url(../img/shirts.jpg);
    background-color: #fff;
    background-position: top 3rem center;
    background-size: 80%;
    background-repeat: no-repeat;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
    -webkit-transition: box-shadow 0.5s linear,
    height 0.1s linear 0s;
    transition:
    box-shadow 0.5s linear,
    height 0.1s linear 0s;
    }
    .name {
    display: block;
    padding: 1rem 0.5rem;
    }
    .description {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: block;
    padding: 0 1.5rem;
    opacity: 0;
    -webkit-transition: opacity 0.1s linear 0s;
    transition: opacity 0.1s linear 0s;
    }
    .wrapper:hover .box:not(:hover) {
    /*-webkit-filter: blur(3px);
    filter: blur(3px);*/
    opacity: 0.5;

    /*yinyingxiaoguo*/
    -webkit-filter: drop-shadow(8px 8px 10px red); /* Chrome, Safari, Opera */
    filter: drop-shadow(8px 8px 10px red);
    }
    .box:hover {
    -webkit-transform: scale(2.2);/*放大倍数*/
    transform: scale(2.2);

    -webkit-transition: opacity 0.1s linear 0s,/*透明度 linear动画从头到尾的速度是相同的。*/
    -webkit-transform 0.3s linear 0.3s,
    -webkit-filter 0.1s linear 0s;

    transition: opacity 0.1s linear 0s,
    -webkit-transform 0.3s linear 0.3s,
    -webkit-filter 0.1s linear 0s;

    transition: transform 0.3s linear 0.3s,/*transform 属性向元素应用 2D 或 3D 转换。该属性允许我们对元素进行旋转、缩放、移动或倾斜。*/
    filter 0.1s linear 0s,
    opacity 0.1s linear 0s;
    transition:
    transform 0.3s linear 0.3s,
    filter 0.1s linear 0s,
    opacity 0.1s linear 0s,
    -webkit-transform 0.3s linear 0.3s,
    -webkit-filter 0.1s linear 0s;
    }
    .box:hover .product {
    height: 23rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    -webkit-transition: box-shadow 1s linear,
    height 0.3s linear 0.5s;
    transition:
    box-shadow 1s linear,
    height 0.3s linear 0.5s;
    }
    .box:hover .description {
    opacity: 1;
    -webkit-transition: opacity 0.3s linear 0.75s;
    transition: opacity 0.3s linear 0.75s;
    }

  • 相关阅读:
    36-图像有用区(dfs, bfs)
    35-迷宫寻宝(一)-NYOJ82
    34- 24 Point game
    32-回文字符串(dp)
    71-n皇后
    70-合并数字
    2017.11.18 C语言的算法分析题目
    2017.11.17 C++系列---用malloc动态给c++二维数组的申请与释放操作
    2017.11.16 JavaWeb-------第八章 EL、JSTL、Ajax技术
    2017.11.15 JavaWeb的学生体质管理系统
  • 原文地址:https://www.cnblogs.com/yszr/p/8037360.html
Copyright © 2011-2022 走看看