zoukankan      html  css  js  c++  java
  • 非常炫的文字效果


    <!DOCTYPE html>  
    <html lang="en">  
    <head>  
      <meta charset="utf-8">  
      <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">  
      <title>非常炫的文字效果</title>  
      <style>  
        .colorful a {
          color: #E16132;
          margin-right: 5px;
          text-decoration: none;
          padding: 3px 0;
        }
    
        @supports (-webkit-transform: scale(0)) {
          .colorful {
            /*-webkit-mask-image: linear-gradient(to right, red, orange, yellow, green, cyan, blue, purple);*/
            background-image: linear-gradient(to right, red, orange, yellow, green, yellow, orange, red, orange, yellow, green, yellow, orange, red);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              -webkit-background-size: 200% 100%;
              animation: bgp 5s infinite linear;
          }
        }
        @-webkit-keyframes bgp {
            0%  { background-position: 0 0;}
            100% { background-position: -100% 0;}
        }
      </style>  
    </head>  
    <body>  
    <p class="colorful ovh">
      <a href="https://blog.csdn.net/xutongbao" class="btn" target="_blank">徐同保</a>
      <a href="#" class="btn" target="_blank">京东自营</a>
      <a href="#" class="btn" target="_blank">当当自营</a>
      <a href="#" class="btn" target="_blank">亚马逊</a>
      <a href="#" class="btn" target="_blank">异步社区</a>
    </p>
      
    <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>   
    </body>  
    </html>



    备注:欢迎加入web前端求职招聘qq群:668352707




  • 相关阅读:
    网络之传输层
    局域网的物理组成
    网络基础
    RAID磁盘阵列
    mount挂载和交换分区swap
    Linux文件系统
    sed命令基础2
    sed命令基础
    LVM基础
    磁盘配额基础
  • 原文地址:https://www.cnblogs.com/xutongbao/p/9924854.html
Copyright © 2011-2022 走看看