先看效果
##clip 屬性剪裁絕對定位元素。
當一幅圖像的尺寸大於包含它的元素時會發生什麼事呢? "clip" 屬性可讓您規定一個元素的可見尺寸,這樣此元素就會被修剪並顯示為這個形狀。clip: rect(<top>, <right>, <bottom>, <left>);</left></bottom></right></top>
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: ''; 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中文網其他相關文章!