使用 CSS 為 border-left 屬性新增動畫


要使用 CSS 對 border-left 屬性實現動畫,你可以嘗試執行以下程式碼

示例

即時演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 500px;
            height: 300px;
            background: yellow;
            border: 10px solid yellow;
            border-bottom-right-radius: 100px;
            border-bottom-width: 30px;
            background-image: url('https://tutorialspoint.tw/latest/testrail.png');
            animation: myanim 3s infinite;
            background-position: bottom left;
            background-size: 50px;
         }
         @keyframes myanim {
            40% {
               background-color: maroon;
               background-size: 90px;
               border-bottom-color: green;
               border-bottom-right-radius: 50px;
               border-bottom-width: 50px;
               border-color: red;
               border-left: 10px dashed orange;
            }
         }
      </style>
   </head>
   <body>
      <h2>Performing Animation for left border</h2>
      <div></div>
   </body>
</html>

更新於: 25-6 月 - 2020

383 次瀏覽

開啟你的 職業生涯

完成課程,獲得認證

開始
廣告
© . All rights reserved.