zoukankan      html  css  js  c++  java
  • CSS Clip剪切元素实例

    一、实例1:

    .fixed {
        position: fixed;
        width: 382px;
        height: 100px;
        background: red;
        border: 1px solid blue;
        left:100px;
        top:100px;
    }
    
        .fixed img {
            position: absolute;
            animation: face 4s ease infinite alternate;
            -webkit-animation: face 4s ease infinite alternate;
            clip: rect(0px,129px,100px,0px);
                   
        }
    @keyframes face {
        from {
            clip: rect(0px,129px,100px,0px);
        }
        to{
                clip: rect(0px,382px,100px,258px);
        }
    }

    二、实例2:

    .fixed {
        position: fixed;
        width: 382px;
        height: 100px;
        background: red;
        border: 1px solid blue;
        left:100px;
        top:100px;
    }
    
        .fixed img {
            position: absolute;
        }
    
    .face1 {
        clip: rect(0px,129px,100px,0px);
    }
    
    .face2 {
        clip: rect(0px,258px,100px,129px);
    }
    
    .face3 {
        clip: rect(0px,382px,100px,258px);
    }
        <div class="fixed">
            <img class="face3" src="../Img/clip-rect-10.png" />
        </div>
        <script>
            var number = 0;
            var img = document.getElementsByTagName('img')[0];
            setInterval(function () {
                number++;
                if (number == 4)
                    number = 1;
                img.className = 'face' + number;
            }, 1000);
        </script>

    三、实例3:

    .fixed {
        position: fixed;
        width: 100px;
        height: 100px;
        background: red;
        border: 0px solid blue;
        left: 100px;
        top: 100px;
        animation:animateOne linear 4s infinite;
    }
    @keyframes animateOne {
        0%,100% {
            clip: rect(0px,100px,5px,0px);
        }
    
        25% {
            clip: rect(0px,5px,100px,0px);
        }
    
        50% {
            clip: rect(95px,100px,100px,0px);
        }
    
        75% {
            clip: rect(0px,100px,100px,95px);
        }
    }

    四、实例4:

            .fixed {
                position: fixed;
                width: 90px;
                height: 90px;
                background: red;
                border: 0px solid blue;
                left: 100px;
                top: 100px;
            }
                .fixed:before {
                    position: absolute;
                    width: 100px;
                    height: 100px;
                    margin:-5px;
                    box-shadow:inset 0px 0px 2px 2px blue;
                    content:'';
                    animation: animateOne linear 4s infinite;
                }
            @keyframes animateOne {
                0%,100% {
                    clip: rect(0px,100px,5px,0px);
                }
    
                25% {
                    clip: rect(0px,5px,100px,0px);
                }
    
                50% {
                    clip: rect(95px,100px,100px,0px);
                }
    
                75% {
                    clip: rect(0px,100px,100px,95px);
                }
            }

    Clip属性简介:http://www.cnblogs.com/tianma3798/p/5862126.html

  • 相关阅读:
    设计模式与23种设计模式的简单介绍
    一文读懂C++ Vector在算法竞赛中的常见用法
    一文读懂C++ String类在算法竞赛中的常见用法
    GO语言的单元测试与性能测试
    变量提升和函数提升及二者优先级
    闭包
    读《你不知道的JavaScript 中》-异步【3】Promise
    js数组方法-改变原数组和不改变原数组
    读《你不知道的JavaScript 中》-异步【2】回调
    组合类算法问题
  • 原文地址:https://www.cnblogs.com/tianma3798/p/5862162.html
Copyright © 2011-2022 走看看