zoukankan      html  css  js  c++  java
  • jq实现从容器中间扩散的方式显示文字

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.js"></script>
        <style>
            * {
                margin: 0;
                padding: 0;
            }
    
            .wrap {
                width: 300px;
                height: 300px;
                margin: 10px auto;
                overflow: hidden;
            }
    
            .con {
                width: 300px;
                height: 300px;
                position: relative;
                border: 1px solid #ccc;
                padding: 5px;
            }
    
               .wrap1 {
                   width: 300px;
                   height: 300px;
                   margin: 10px auto;
                   overflow: hidden;
                   position: relative;
    
               }
              .bg {
                  position: absolute;
                  width: 0px;
                  height: 0px;
                  border-radius: 150px;
                  border: 250px solid #00c1de;
                  top: -100px;
                  left: -100px;
                  animation: identifier 5s;
              }
            @-webkit-keyframes identifier {
                from {
                    -webkit-transform: rotate(0deg);
                }
                to {
                    -webkit-transform: rotate(720deg);
                }
            
            }
    
            @keyframes identifier {
                from {
                    -webkit-transform: rotate(0deg);
                }
                to {
                    -webkit-transform: rotate(720deg);
                }
            
            }
        </style>
    </head>
    <body>
    <div class="wrap1">
        <div class="con">
            测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测测
        </div>
        <div class="bg"></div>
    </div>
    <script>
        $(".bg").animate({"width": "300px", "height": "300px", "left": "-250px", "top": "-250px"}, 5000);
    </script>
    </body>
    </html>
  • 相关阅读:
    第19篇-Kibana对Elasticsearch的实用介绍
    第18篇-用ElasticSearch索引MongoDB,一个简单的自动完成索引项目
    第17篇-使用Python的初学者Elasticsearch教程
    第16篇-关于Elasticsearch的6件不太明显的事情
    第15篇-使用Django进行ElasticSearch的简单方法
    第14篇-Python中的Elasticsearch入门
    第13篇-Elasticsearch查询-术语级查询
    第12篇-Elasticsearch全文查询
    MQTT
    rest-framework-@action()装饰器
  • 原文地址:https://www.cnblogs.com/dongxiaolei/p/6708860.html
Copyright © 2011-2022 走看看