zoukankan      html  css  js  c++  java
  • 博客 文章中 文字上下摇摆动画效果

    个人博客传送门》》》》》

    /**
     *  ┏┓   ┏┓+ +
     * ┏┛┻━━━┛┻┓ + +
     * ┃       ┃  
     * ┃   ━   ┃ ++ + + +
     * ████━████ ┃+
     * ┃       ┃ +
     * ┃   ┻   ┃
     * ┃       ┃ + +
     * ┗━┓   ┏━┛
     *   ┃   ┃           
     *   ┃   ┃ + + + +
     *   ┃   ┃
     *   ┃   ┃ +  神兽保佑
     *   ┃   ┃    代码无bug  
     *   ┃   ┃  +         
     *   ┃    ┗━━━┓ + +
     *   ┃        ┣┓
     *   ┃        ┏┛
     *   ┗┓┓┏━┳┓┏┛ + + + +
     *    ┃┫┫ ┃┫┫
     *    ┗┻┛ ┗┻┛+ + + +
     */
     ======
    实现方法,编写博客的时候,选择 html 这个图标,编辑html源代码
     
    添加如下语句 即可
    <p><em><strong><a class="gomyblog" href="#" target="_blank">个人博客传送门》》》》》</a></strong></em></p>
    <pre>/**
    *  ┏┓   ┏┓+ +
    * ┏┛┻━━━┛┻┓ + +
    * ┃       ┃  
    * ┃   ━   ┃ ++ + + +
    <span class="gomyblog">* ████━████ ┃+</span>
    * ┃       ┃ +
    * ┃   ┻   ┃
    * ┃       ┃ + +
    * ┗━┓   ┏━┛
    *   ┃   ┃           
    *   ┃   ┃ + + + +
    *   ┃   ┃
    *   ┃   ┃ + 神兽保佑
    *   ┃   ┃ 代码无bug  
    *   ┃   ┃  +         
    *   ┃    ┗━━━┓ + +
    *   ┃        ┣┓
    *   ┃        ┏┛
    *   ┗┓┓┏━┳┓┏┛ + + + +
    *    ┃┫┫ ┃┫┫
    *    ┗┻┛ ┗┻┛+ + + +
    */</pre>
    </div>
    </div>
    <style><!--
    .gomyblog {
    display:inline-block;
    animation:lol 0.5s infinite 3s;
    -webkit-animation:lol 0.5s infinite 3s;
    
    }
    @keyframes lol {
    0% {transform:rotate(0deg)}
    33% {transform:rotate(30deg)}
    66% {transform:rotate(0deg)}
    100% {transform:rotate(-30deg)} 
    }
    @-webkit-keyframes lol {
    0% {-webkit-transform:rotate(0deg)}
    33% {-webkit-transform:rotate(30deg)}
    66% {-webkit-transform:rotate(0deg)}
    100% {-webkit-transform:rotate(-30deg)} 
    }
    --></style>
    

      

    ======

  • 相关阅读:
    TypeError: Iterator operand 0 dtype could not be cast from dtype('<M8[us]') to dtype('<M8[D]') according to the rule 'safe'
    Linux中matplotlib 中文显示问题解决
    自己动手实现爬虫scrapy框架思路汇总
    机器学习算法之多项式回归
    scrapy爬虫--苏宁图书
    Mongodb数据库基本操作
    day04 Python
    day03 Python爬虫
    day02 Python完结
    day01 python基础
  • 原文地址:https://www.cnblogs.com/yue31313/p/7865761.html
Copyright © 2011-2022 走看看