首頁 > web前端 > css教學 > 主體

css中clip屬性的應用方法(附程式碼)

不言
發布: 2018-10-27 14:40:17
轉載
2432 人瀏覽過
這篇文章帶給大家的內容是關於css中clip屬性的應用方法(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

先看效果

css中clip屬性的應用方法(附程式碼)

css中clip屬性的應用方法(附程式碼)##clip 屬性剪裁絕對定位元素。

當一幅圖像的尺寸大於包含它的元素時會發生什麼事呢? "clip" 屬性可讓您規定一個元素的可見尺寸,這樣此元素就會被修剪並顯示為這個形狀。

clip: rect(<top>, <right>, <bottom>, <left>);</left></bottom></right></top>
登入後複製
css中clip屬性的應用方法(附程式碼)

###
nbsp;html>


    <meta>
    <title></title>
    <style>
        .box {
            margin: 100px;
            display: inline-block;
            padding: 8px;
            position: relative;
            background-color: rgba(255,255,255,0.8);
        }
        .box::before {
            content: &#39;&#39;;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            border: 2px solid #E611F1;
            animation: borderAround 5s infinite linear;
            background-color: rgba(25,66,25,0.8);
        }
        @keyframes borderAround {
            0%,
            100% {
                clip: rect(0 148px 2px 0);
            }
            25% {
                clip: rect(0 148px 116px 146px);
            }
            50% {
                clip: rect(116px 148px 116px 0);
            }
            75% {
                clip: rect(0 2px 116px 0);
            }
        }
    </style>


    <div>
        <img  alt="css中clip屬性的應用方法(附程式碼)" >
    </div>

登入後複製
###附上一張解密圖##################

以上是css中clip屬性的應用方法(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:segmentfault.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板