zoukankan      html  css  js  c++  java
  • CSS3 transform rotate 、scale 与JQuery的综合应用

    代码如下:

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Rotate 转动动画测试</title>
    <style type="text/css">
    .box{
        width:280px;
        height:280px;
        background-color:#FF0;    
    }
    .tran{
        transform:rotate(30deg) scale(0.5,0.3);    
    }
    .reset{
        transform:rotate(0deg) scale(1,1);    
    }
    </style>
    <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.js"></script>
    <script type="text/javascript">
    $(function(){
        $(".btn1").click(function(){
            $(".box").removeClass("reset");
            $(".box").addClass("tran");        
            });
        $(".btn2").click(function(){
            $(".box").removeClass("tran");
            $(".box").addClass("reset");        
            });
    });
    </script>
    </head>
    <body>
    <div class="box"></div>
    <button class="btn1">变化</button>
    <button class="btn2">重置</button>
    </body>
    </html>

    课后作业:

    1.复制上述代码,预览查看效果。

    2.读懂上述代码。

  • 相关阅读:
    Docker安装nexus
    docker常用操作备忘
    react-01
    SBT实操指南
    Play中JSON序列化
    SPARK安装一:Windows下VirtualBox安装CentOS
    SPARK安装三:SPARK集群部署
    SPARK安装二:HADOOP集群部署
    SLICK基础
    函数式编程
  • 原文地址:https://www.cnblogs.com/exesoft/p/12979335.html
Copyright © 2011-2022 走看看