css 3フォント色の入れ替えを実現

5379 ワード

animate cssのページのフォントの色が変わっているのを見て、とても好奇心があったので、ソースコードを見てもコピーして、単独で使いました.
次にケースを書いて、過去をコピーして、ブラウザで開くと効果が見えます:効果図はここで見ることができます

<html>
    <head>
        <meta charset="utf-8" />
        <title>title>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <style type="text/css">
            .but{
                border: 2px solid #f35626;
                padding: 1.5rem;
                color: #f35626;
                -webkit-animation: hue 60s infinite linear;
                background-color: transparent;
                -webkit-appearance:none;
                border-radius: 10px;
            }
            @-webkit-keyframes hue {
              from {
                -webkit-filter: hue-rotate(0deg);
              }

              to {
                -webkit-filter: hue-rotate(-360deg);
              }
            }

            .title{
                color: #f35626;
                /*font-size: 6rem;*/
                background-image:-webkit-linear-gradient(92deg,#f35626,#feab3a);
                -webkit-animation: hue 60s infinite linear;
                -webkit-text-fill-color: transparent;
                -webkit-background-clip:text;
            }


        style>
    head>
    <body>
        <h3 class="title">animate cssh3>
        <button type="button" class="but">animatebutton>
    body>
html>