zoukankan      html  css  js  c++  java
  • 警告滚动展示

     
    /* 左到右滚动展示 */
       .left-Right{
            position: absolute;
            right: -100%;
            white-space: nowrap;
            animation-name: gun;
          animation-duration: 10s;
          animation-iteration-count: infinite;
          animation-timing-function: linear;
       }
        @keyframes gun {
            0%{
                right: -400px;
            }
            100%{
                right: 400px;
            }
        }
     
     
     
    <div style=" 400px;height: 100px;border: 1px solid red;overflow: hidden;position: relative;">
            <div class="left-Right" id="left-Right">警告:李家口2号有人摆地摊闹事,请尽快处理!</div>
        </div>
     
     /*  颠倒字符串顺序
              var str = "警告:李家口2号有人摆地摊闹事,请尽快处理!",
                len = str.length,
                strReverse = '';
                for(var i=len-1;i>=0;i--){
                strReverse += str.charAt(i);
                }
                document.getElementById('left-Right').innerHTML = strReverse;
                console.log(strReverse)
                */
  • 相关阅读:
    台式机+笔记本的扩展模式+远程登录设置
    Hadoop 集群搭建以及脚本撰写
    Python 入门学习(三)
    1056 Mice and Rice
    1057 Stack
    1058 A+B in Hogwarts
    1059 Prime Factors
    使用熔断器仪表盘监控
    使用熔断器防止服务雪崩
    创建服务消费者(Feign)
  • 原文地址:https://www.cnblogs.com/lihong-123/p/13305783.html
Copyright © 2011-2022 走看看