├── 1.打字特效 ├── index.html └── style.css ├── 10.两种主题的右键菜单 ├── icon │ ├── iconfont.css │ ├── iconfont.js │ ├── iconfont.json │ └── iconfont.ttf ├── index.html ├── script.js └── style.css ├── 11.加载特效(一)—模糊加载效果 ├── index.html └── style.css ├── 12.图片放大镜效果 ├── image │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ └── 6.jpg ├── index.html ├── script.js └── style.css ├── 13.消失的导航栏-IntersectionObserver ├── image │ ├── bg1.jpg │ ├── bg2.jpg │ ├── bg3.jpg │ └── bg4.jpg ├── index.html ├── script.js └── style.css ├── 14.canvas水印效果 ├── index.html ├── script.js └── style.css ├── 15.MutationObserver变动观察器 ├── index.html ├── script.js ├── script2.js └── style.css ├── 16.音乐播放器-1 ├── font │ └── JosefinSans-Light.ttf ├── icon │ ├── iconfont.css │ ├── iconfont.js │ ├── iconfont.json │ └── iconfont.ttf ├── image │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── bg1.jpg │ └── bg2.jpg ├── index.html ├── music │ ├── Celebrity.mp3 │ ├── The Rain.mp4 │ └── 天空之城.mp4 ├── script.js └── style.css ├── 17.响应式页面模板 ├── README.md ├── font │ └── Merienda-Regular.ttf ├── icon │ ├── iconfont.css │ ├── iconfont.js │ ├── iconfont.json │ └── iconfont.ttf ├── image │ ├── Jisoo.jpg │ ├── bg-1.jpg │ ├── bg-2.jpg │ ├── chetaixian.jpg │ ├── dingyiyu.jpg │ └── luowenji.jpg ├── index.html ├── script.js └── style.css ├── 2.樱花飞舞 ├── image │ ├── bg1.jpg │ └── sakura.png ├── index.html ├── script.js └── style.css ├── 3.3D卡片翻转效果-王心凌爱你 ├── font │ └── IndieFlower.ttf ├── image │ ├── wxl-1.jpg │ └── wxl-3.jpg ├── index.html └── style.css ├── 4.高考加油 ├── image │ └── bg.jpg ├── index.html ├── style.css └── 图解1.png ├── 5.新拟态登录界面 ├── icon │ ├── iconfont.css │ ├── iconfont.js │ ├── iconfont.json │ └── iconfont.ttf ├── index.html ├── script.js └── style.css ├── 6.主题切换 ├── css │ ├── reset.css │ ├── theme-blue.css │ ├── theme-dark.css │ ├── theme-red.css │ └── theme-white.css ├── index.html └── script.js ├── 7.可拖动半透明弹框dialog ├── image │ └── longmao.jpg ├── index.html ├── script.js └── style.css ├── 8.仿css-tricks的卡片抽出效果 ├── image │ ├── avatar-Jennie.png │ ├── avatar-Jisoo.png │ ├── avatar-Jisoo2.png │ ├── avatar-Lisa2.png │ └── avatar-Rose.png ├── index.html └── style.css ├── 9.炎炎夏日送你一场雪 ├── image │ ├── 1.jpg │ └── 3.jpg ├── index.html ├── script.js └── style.css ├── README.md └── 【粉丝问题解答-第1期】飘落樱花背景的页面 ├── image ├── petal.png └── sakura2.jpg ├── index.html ├── script.js └── style.css /1.打字特效/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |どれほどよかったでしょう
16 | 17 |未だにあなたのことを夢にみる
18 | 19 |忘れた物を取りに帰るように
20 | 21 |古びた思い出の埃を払う
22 | 23 |戻らない幸せがあることを
24 | 25 |最後にあなたが教えてくれた
26 | 27 |言えずに隠してた昏い過去も
28 | 29 |あなたがいなきゃ
30 | 31 |永遠に昏いまま
32 | 33 |きっともうこれ以上
34 | 35 |傷つくことなど
36 | 37 |ありはしないとわかっている
38 | 39 |あの日の悲しみさえ
40 | 41 |あの日の苦しみさえ
42 | 43 |そのすべてを愛してた
44 | 45 |あなたとともに
46 | 47 |胸に残り離れない
48 | 49 |苦いレモンの匂い
50 | 51 |雨が降り止むまでは帰れない
52 | 53 |今でもあなたはわたしの光
54 |