24 |
25 |
26 |
27 |
28 | ├── 2020 ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── .gitignore ├── README.md ├── border-button ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── button ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── calendar ├── css │ ├── style.css │ ├── style.css.map │ └── style.scss ├── image │ └── profile.png └── index.html ├── card ├── css │ └── style.css ├── image │ └── profile.png ├── images │ └── image01.jpg └── index.html ├── clock ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── code-box ├── css │ └── style.css ├── image │ └── profile.png ├── index.html └── js │ └── index.js ├── docs ├── css │ └── style.css ├── index.html └── js │ ├── app.js │ └── vue.js ├── douyin ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── hetongxue-piantou ├── css │ └── style.css ├── image │ ├── profile.jpg │ └── profile.png └── index.html ├── jianzhi ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── line-font ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── loading ├── css │ ├── style.css │ ├── style2.css │ ├── style3.css │ ├── style4.css │ ├── style5.css │ └── style6.css ├── image │ └── profile.png └── index.html ├── login ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── login2 ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── login3 ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── nintendo-switch ├── css │ ├── style.css │ ├── style.css.map │ └── style.scss ├── image │ └── profile.png ├── images │ └── switch.svg └── index.html ├── page-404 ├── css │ └── style.css ├── image │ └── profile.png ├── index.html └── static │ └── 404.svg ├── split-font ├── css │ └── style.css ├── image │ └── profile.png └── index.html ├── switch-button ├── css │ └── style.css ├── image │ └── profile.png └── index.html └── todo-list ├── css └── style.css ├── image └── profile.png └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | 3 | */.vscode -------------------------------------------------------------------------------- /2020/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | padding: 0; 3 | margin: 0; 4 | } 5 | 6 | html { 7 | height: 100%; 8 | } 9 | 10 | /* 11 | #E71D36 12 | #FF9F1C 13 | */ 14 | 15 | body { 16 | background: #FF9F1C; 17 | animation: bodyAction 2s ease-in-out; 18 | } 19 | 20 | @keyframes bodyAction { 21 | 0% { 22 | background: #E71D36; 23 | } 24 | 100% { 25 | background: #FF9F1C ; 26 | } 27 | } 28 | 29 | .num { 30 | font-size: 200px; 31 | position: fixed; 32 | color: #FF9F1C; 33 | text-shadow: 5px 0 0 #000; 34 | } 35 | 36 | .num span { 37 | display: block; 38 | vertical-align: top; 39 | height: 200px; 40 | width: 180px; 41 | text-align: center; 42 | line-height: 200px; 43 | } 44 | 45 | .num .check { 46 | color: #E71D36; 47 | } 48 | 49 | @keyframes checkAction { 50 | 0% { 51 | color: #FF9F1C; 52 | } 53 | 100% { 54 | color: #E71D36; 55 | } 56 | } 57 | 58 | .num.num1 { 59 | top: -1600px; 60 | left: calc(50% - 400px); 61 | animation: num1Action 2s ease-in-out; 62 | } 63 | 64 | @keyframes num1Action { 65 | 0% { 66 | top: 0px; 67 | } 68 | 100% { 69 | top: -1600px; 70 | /* color: #E71D36; */ 71 | } 72 | } 73 | 74 | .num.num2 { 75 | left: calc(50% - 200px); 76 | top: -1200px; 77 | animation: num2Actoin 2s ease-in-out; 78 | } 79 | 80 | @keyframes num2Actoin { 81 | 0% { 82 | top: 0px; 83 | } 84 | 100% { 85 | top: -1200px; 86 | /* color: #E71D36; */ 87 | } 88 | } 89 | 90 | .num.num3 { 91 | left: calc(50% + 0px); 92 | 93 | top: -1600px; 94 | animation: num3Actoin 2s ease-in-out; 95 | } 96 | 97 | @keyframes num3Actoin { 98 | 0% { 99 | top: 0px; 100 | } 101 | 100% { 102 | top: -1600px; 103 | /* color: #E71D36; */ 104 | } 105 | } 106 | 107 | .num.num4 { 108 | left: calc(50% + 200px); 109 | 110 | top: -1200px; 111 | animation: num4Actoin 2s ease-in-out; 112 | } 113 | 114 | @keyframes num4Actoin { 115 | 0% { 116 | top: 0px; 117 | } 118 | 100% { 119 | top: -1200px; 120 | /* color: #E71D36; */ 121 | } 122 | } -------------------------------------------------------------------------------- /2020/image/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyingwei/html-css-only/3af9f30135bb4780dbed33bee469a0d8e67a039b/2020/image/profile.png -------------------------------------------------------------------------------- /2020/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |Applied Psychometrics specialist
19 |
24 |
25 |
26 |
27 |
28 |