diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/css/index.css" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/css/index.css" new file mode 100644 index 0000000000000000000000000000000000000000..b1b1a3995e48edb3d714775a3b2287d7b0ea11b1 --- /dev/null +++ "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/css/index.css" @@ -0,0 +1,91 @@ +@charset "utf-8"; +*{ + margin: 0; + padding: 0; +} +body{ + background: url("../img/背景.jpg") no-repeat; + background-size: 100% 950px; +} +h2{ + /*习惯:使用font字体属性,使用拆分属性*/ + font-family: "华文楷体"; + font-size: 100px; +} +#div1{ + bor der: 1px solid red; /*确定选择器选中*/ + width: 600px; + height: 400px; + background: url("../img/七个呼噜.png") no-repeat; + /*设置尺寸:尽量设置两个数值:X宽 Y高*/ + background-size: 500px 600px; + /*定位*/ + position: relative; + /*相对定位 用法:左栏*/ + left: 663px; + top: -110px; + animation: calabash 8s linear infinite; +} +/*关键帧(手翻书),特点:继承尺寸、定位*/ +@keyframes calabash { + 0%{ + /*初始值:位置、大小、图片不变*/ + left: 663px; + top: -110px; + } + 10%{ + background: url("../img/七个呼噜.png") no-repeat; + background-size: 500px 600px; + /*设置背景尺寸:设置背景之后,设置尺寸,有先后关系*/ + left: 663px; + top: 350px; + } + 20%{ + background: url("../img/1.png") no-repeat; + background-size: 400px 400px; + left: 100px; + top: 350px; + } + 30%{ + background: url("../img/2.png") no-repeat; + background-size:400px 400px; + left: 200px; + top: 350px; + } + 40%{ + background: url("../img/3.png") no-repeat; + background-size: 400px 400px; + left: 300px; + top: 350px; + } + 50%{ + background: url("../img/4.png") no-repeat; + background-size: 400px 400px; + left: 400px; + top: 350px; + } + 60%{ + background: url("../img/5.png") no-repeat; + background-size: 400px 400px; + left: 500px; + top: 350px; + } + 70%{ + background: url("../img/6.png") no-repeat; + background-size: 400px 400px; + left: 600px; + top: 350px; + } + 80%{ + background: url("../img/7.png") no-repeat; + background-size: 400px 400px; + left: 650px; + top: 350px; + } + 100%{ + background: url("../img/葫芦娃.png") no-repeat; + background-size: 500px 500px; + left: 600px; + top: 350px; + } +} \ No newline at end of file diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/1.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/1.png" new file mode 100644 index 0000000000000000000000000000000000000000..15212e181a0c140036d7ff3ca782ac458534f0e0 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/1.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/2.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/2.png" new file mode 100644 index 0000000000000000000000000000000000000000..e5700141f85c50f15a9a884b856c42e02ea8c865 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/2.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/3.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/3.png" new file mode 100644 index 0000000000000000000000000000000000000000..5af913ca0636219be4925f010567817960ecc562 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/3.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/4.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/4.png" new file mode 100644 index 0000000000000000000000000000000000000000..f3e687629ef79ef0a5b292d1f3ed6386d3dc7667 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/4.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/5.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/5.png" new file mode 100644 index 0000000000000000000000000000000000000000..7bfd27080c07e44e048cc2b7f187877539bf3c24 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/5.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/6.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/6.png" new file mode 100644 index 0000000000000000000000000000000000000000..3a36063b09401f1e61e018c955848a64cd418ca6 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/6.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/7.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/7.png" new file mode 100644 index 0000000000000000000000000000000000000000..7a0fe840c464a70e63de0570e6740099a5e375c7 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/7.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/cloud.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/cloud.png" new file mode 100644 index 0000000000000000000000000000000000000000..0052b8e86d17df2b57ff41b0c77baaca30d0239d Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/cloud.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\344\270\203\344\270\252\345\221\274\345\231\234.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\344\270\203\344\270\252\345\221\274\345\231\234.png" new file mode 100644 index 0000000000000000000000000000000000000000..12a9760d6af8e7d7b935e762db6203a64ed12bda Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\344\270\203\344\270\252\345\221\274\345\231\234.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\347\276\244\346\230\237 - \350\221\253\350\212\246\345\250\203.mp3" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\347\276\244\346\230\237 - \350\221\253\350\212\246\345\250\203.mp3" new file mode 100644 index 0000000000000000000000000000000000000000..2b1d3977fd2878cb6be5f46873c8b6ed179853a9 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\347\276\244\346\230\237 - \350\221\253\350\212\246\345\250\203.mp3" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\350\203\214\346\231\257.jpg" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\350\203\214\346\231\257.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b6996ebc5da707f0165c420bc9bec179f3a6aca2 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\350\203\214\346\231\257.jpg" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\350\221\253\350\212\246\345\250\203.png" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\350\221\253\350\212\246\345\250\203.png" new file mode 100644 index 0000000000000000000000000000000000000000..e4be1c149cc44e8d50a67ba51e3b0fc1dc4023a8 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/img/\350\221\253\350\212\246\345\250\203.png" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/\347\231\276\345\272\246\345\216\237\345\236\213\345\233\276.rp" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/\347\231\276\345\272\246\345\216\237\345\236\213\345\233\276.rp" new file mode 100644 index 0000000000000000000000000000000000000000..6f80465a764da5a9d1f77e7ed5d8a559f9cfdcb6 Binary files /dev/null and "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/\347\231\276\345\272\246\345\216\237\345\236\213\345\233\276.rp" differ diff --git "a/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/\350\221\253\350\212\246\345\250\203.html" "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/\350\221\253\350\212\246\345\250\203.html" new file mode 100644 index 0000000000000000000000000000000000000000..5e6ea6c7c0f005a9a839f2c98515c075d3e2623f --- /dev/null +++ "b/21\344\272\221\350\256\241\347\256\227\344\272\214\347\217\25521114230201\350\214\203\346\200\235\345\275\244/\350\221\253\350\212\246\345\250\203.html" @@ -0,0 +1,13 @@ + + + + + 葫芦娃 + + + +

葫芦娃

+ +
+ + \ No newline at end of file