diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/css/inex.css" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/css/inex.css" new file mode 100644 index 0000000000000000000000000000000000000000..68cdf03beb6b49929e32428fc6c32c25e7a522e4 --- /dev/null +++ "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/css/inex.css" @@ -0,0 +1,114 @@ +@charset "UTF-8"; +/*1.文本的编码集:UTF-8 万国码---避免乱码*/ +/*2.统一元素:盒子模型问题:外边距(元素存在默认外边距)、内边距、内容、边框*/ +*{ + margin:0; + padding: 0; +} +/*3.添加背景图片*/ +body{ + background: url(../img/123.jpg) no-repeat; + background-size: 100% 950px; +} +/*4.美化文字*/ +h1{ + font-size: 100px; + font-family: "华文彩云"; +} +/*5.熊猫*/ +#bear{ + width: 500px; + height: 500px; + bor der: 1px solid red; + /*背景图片:灵活(页面切换图片)*/ + background: url() no-repeat; + background-size: 500px 500px; + /* 相对定位*/ + position: relative; + left: -16px; + top: 19px; + /*动画: 拿起手翻书10s内匀速无限次重复动画*/ + animation: bear 10s linear infinite; +} +/*6.熊猫动画--关键帧*/ +@keyframes bear { + 0%{ + /*初始值:位置、大小、图片不变*/ + background: url(../img/1.png) no-repeat; + background-size: 100px 100px; + transform: rotate(0deg) scale(1) ; + left: -16px; + top: 19px; + } + 10%{ + background: url(../img/2.png) no-repeat; + background-size: 500px 500px; + transform: rotate(80deg) scale(1.2) ; + left: -16px; + top: 19px; + } + 20%{ + background: url(../img/3.png) no-repeat; + background-size: 500px 500px; + transform: rotate(180deg) scale(1.4) ; + left: 600px; + top: 300px; + } + 30%{ + background: url(../img/4.png) no-repeat; + background-size: 500px 500px; + transform: rotate(360deg) scale(0.8) ; + left: 400px; + top: -200px; + } + 40%{ + background: url(../img/5.png) no-repeat; + background-size: 500px 500px; + transform: rotate(390deg) scale(1.8) ; + left: 645px; + top: 145px; + } + 50%{ + background: url(../img/6.png) no-repeat; + background-size: 500px 500px; + transform: rotate(360deg) scale(1.2) ; + left: 800px; + top: 600px; + } + 60%{ + background: url(../img/7.png) no-repeat; + background-size: 500px 500px; + transform: rotate(-90deg) scale(.8) ; + left: 463px; + top: 320px; + } + 70%{ + background: url(../img/bear_7.png) no-repeat; + background-size: 500px 500px; + transform: rotate(90deg) scale(1.8) ; + left: -160px; + top: 230px; + } + 80%{ + background: url(../img/bear_8.png) no-repeat; + background-size: 500px 500px; + transform: rotate(-90deg) scale(.8) ; + left: 452px; + top: 102px; + } + 90%{ + background: url(../img/bear_9.png) no-repeat; + background-size: 500px 500px; + transform: rotate(50deg) scale(1) ; + left: 542px; + top: 21px; + } + 100%{ + background: url(../img/bear_10.png) no-repeat; + background-size: 500px 500px; + transform: rotate(0deg) scale(2.2) ; + left: 645px; + top: 335px; + } +} + diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/1.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/1.png" new file mode 100644 index 0000000000000000000000000000000000000000..15212e181a0c140036d7ff3ca782ac458534f0e0 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/1.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/123.jpg" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/123.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b6996ebc5da707f0165c420bc9bec179f3a6aca2 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/123.jpg" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/2.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/2.png" new file mode 100644 index 0000000000000000000000000000000000000000..e5700141f85c50f15a9a884b856c42e02ea8c865 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/2.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/3.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/3.png" new file mode 100644 index 0000000000000000000000000000000000000000..5af913ca0636219be4925f010567817960ecc562 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/3.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/4.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/4.png" new file mode 100644 index 0000000000000000000000000000000000000000..f3e687629ef79ef0a5b292d1f3ed6386d3dc7667 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/4.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/5.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/5.png" new file mode 100644 index 0000000000000000000000000000000000000000..7bfd27080c07e44e048cc2b7f187877539bf3c24 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/5.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/6.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/6.png" new file mode 100644 index 0000000000000000000000000000000000000000..3a36063b09401f1e61e018c955848a64cd418ca6 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/6.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/7.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/7.png" new file mode 100644 index 0000000000000000000000000000000000000000..7a0fe840c464a70e63de0570e6740099a5e375c7 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/7.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/cloud.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/cloud.png" new file mode 100644 index 0000000000000000000000000000000000000000..0052b8e86d17df2b57ff41b0c77baaca30d0239d Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/cloud.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/\344\270\203\344\270\252\345\221\274\345\231\234.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/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/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/\344\270\203\344\270\252\345\221\274\345\231\234.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/\347\276\244\346\230\237 - \350\221\253\350\212\246\345\250\203.mp3" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/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/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/\347\276\244\346\230\237 - \350\221\253\350\212\246\345\250\203.mp3" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/\350\221\253\350\212\246\345\250\203.png" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/\350\221\253\350\212\246\345\250\203.png" new file mode 100644 index 0000000000000000000000000000000000000000..e4be1c149cc44e8d50a67ba51e3b0fc1dc4023a8 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/img/\350\221\253\350\212\246\345\250\203.png" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/\347\231\276\345\272\246\351\241\265\351\235\242/\347\231\276\345\272\246\351\241\265\351\235\242.rp" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/\347\231\276\345\272\246\351\241\265\351\235\242/\347\231\276\345\272\246\351\241\265\351\235\242.rp" new file mode 100644 index 0000000000000000000000000000000000000000..fbe7fbca57669f288e409847548a87a669803492 Binary files /dev/null and "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/\347\231\276\345\272\246\351\241\265\351\235\242/\347\231\276\345\272\246\351\241\265\351\235\242.rp" differ diff --git "a/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/\350\221\253\350\212\246\345\250\203.html" "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/\350\221\253\350\212\246\345\250\203.html" new file mode 100644 index 0000000000000000000000000000000000000000..1a0d63a07a54356e4635f3d1512789cb6f6f51a5 --- /dev/null +++ "b/\344\272\221\350\256\241\347\256\227\344\272\214\347\217\255\345\220\264\346\260\270\345\274\27221114230220/\350\221\253\350\212\246\345\250\203.html" @@ -0,0 +1,13 @@ + + +
+ +