CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

border-right-colorプロパティでアニメーションを実行する


border-right-colorにアニメーションを実装するには CSSを使用したプロパティでは、次のコードを実行してみることができます

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

  1. CSSパースペクティブプロパティでアニメーションを実行する

    CSSを使用してパースペクティブプロパティにアニメーションを実装するには、次のコードを実行してみてください 例 <!DOCTYPE html> <html>    <head>       <style>          #demo1 {             position: relative;            

  2. CSSのpadding-topプロパティでアニメーションを実行する

    CSSを使用してpadding-topプロパティにアニメーションを実装するには、次のコードを実行してみてください- 例 <!DOCTYPE html> <html>    <head>       <style>          div {             width: 350px;             heig