码迷,mamicode.com
首页 > 其他好文 > 详细

变量命名规范

时间:2019-12-31 10:39:11      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:orm   mat   案例   命名规范   expand   http   lock   等价   while   

7.5 变量命名规范

规则:

 

  • 由字母(A-Za-z)、数字(0-9)、下划线(_)、美元符号( $ )组成,如:usrAge, num01, _name。

 

  • 严格区分大小写。var app; 和 var App; 是两个变量。
  • 不能 以数字开头。 18age 是错误的。
  • 不能 是关键字、保留字。例如:var、for、while。
  • 变量名必须有意义。 MMD BBD nl → age 。
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        /* from to 等价于  0% 和  100% */
        /* @keyframes move {
            from {
                transform: translate(0, 0);
            }
            to {
                transform: translate(1000px, 0);
            }
        } */
        /* 动画序列 */
        /* 1. 可以做多个状态的变化 keyframe 关键帧 */
        /* 2. 里面的百分比要是整数 */
        /* 3. 里面的百分比就是 总的时间(我们这个案例10s)的划分 25% * 10  =  2.5s */
        
        @keyframes move {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(1000px, 0)
            }
            50% {
                transform: translate(1000px, 500px);
            }
            75% {
                transform: translate(0, 500px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        div {
            width: 100px;
            height: 100px;
            background-color: pink;
            animation-name: move;
            animation-duration: 10s;
        }
    </style>
</head>

<body>
    <div>

    </div>
</body>

</html>

变量命名规范

标签:orm   mat   案例   命名规范   expand   http   lock   等价   while   

原文地址:https://www.cnblogs.com/jianjie/p/12122874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!