├── README.md └── 中秋h5宣传页 ├── .idea ├── encodings.xml ├── modules.xml ├── workspace.xml ├── 移动端模板.iml └── 雇主30强H5.iml ├── css ├── animate.css ├── index.css ├── loading.css └── swiper.min.css ├── images ├── arr.png ├── btnLine.png ├── close.png ├── jiantou.png ├── moutain.png ├── music2.png ├── page1_btn.png ├── page2_bg.jpg ├── page2_cute.png ├── page2_lamp.png ├── page2_text.png ├── page2_text2.png ├── page2_text3.png ├── page2_text4.png ├── page3_bg.jpg ├── page3_text.png ├── page3_text2.png ├── page3_text3.png ├── page3_text4.png ├── page3_text5.png ├── page3_text6.png ├── page3_text7.png ├── page4_bg.jpg ├── page4_text.png ├── page4_text2.png ├── page4_text3.png ├── page5_bg.jpg ├── page5_text.png ├── page5_text2.png ├── page_beauty.png ├── page_bg.jpg ├── page_leveas.png ├── page_sunny.png ├── page_text.png ├── page_titleE.png ├── page_titleQ.png ├── page_titleY.png ├── page_titleYY.png ├── page_titleZ.png ├── showPic.png ├── showPic2.png ├── showPic3.png ├── showPic4.png └── showPic5.png ├── index.html └── js ├── index.js ├── jquery-2.1.3.min.js ├── loadImg.js ├── resize.js └── swiper.min.js /README.md: -------------------------------------------------------------------------------- 1 | # H5-animate- 2 | 中秋主题--Html5宣传动画网页(swiper) 3 | 4 | 1)此demo利用了swiper框架,animat动画库,还有设置js代码来做到自适应移动端,转换单位是rem,与px转换是/100 5 | 6 | 2)此素材在千图网使用会员下载原创psd,谢谢提供的h5设计稿的作者,利用此设计稿我做成这demo,仅供参考与学习,有做的不好纠正与体谅; 7 | 8 | 3)demo里面使用的动画animate,有些是利用了第三方动画库,不过大部分是自己自定义写的动画效果;不过一般设置动画都很大程度是根据设计稿的 9 | 主题来构思设置啥样的动画效果比较好。 10 | 11 | 12 | 效果图 13 | 14 | ![Alt text](https://github.com/lilyping/H5-animate-/blob/master/%E4%B8%AD%E7%A7%8Bh5%E5%AE%A3%E4%BC%A0%E9%A1%B5/images/showPic.png) 15 | 16 | 部分说明:第一页,使用了传送带的循环动画效果;还使用了树叶被风吹后摇晃的动画效果 17 | 18 | 19 | ![Alt text](https://github.com/lilyping/H5-animate-/blob/master/%E4%B8%AD%E7%A7%8Bh5%E5%AE%A3%E4%BC%A0%E9%A1%B5/images/showPic2.png) 20 | 21 | 部分说明:第二页,利用了cut裁剪动画效果(有点类似文本打字出现的效果);不过cut的动画效果的瑕疵就是设置这种cut效果,安卓显示正常的效果, 22 | 苹果不兼容,效果是直接出现,而不是像打印一样处理; 23 | 24 | ![Alt text](https://github.com/lilyping/H5-animate-/blob/master/%E4%B8%AD%E7%A7%8Bh5%E5%AE%A3%E4%BC%A0%E9%A1%B5/images/showPic3.png) 25 | 26 | 部分说明:第三页,使用了字体垂掉,然后掉到一定位置的效果 27 | 28 | ![Alt text](https://github.com/lilyping/H5-animate-/blob/master/%E4%B8%AD%E7%A7%8Bh5%E5%AE%A3%E4%BC%A0%E9%A1%B5/images/showPic4.png) 29 | 30 | 部分说明:第四页,使用了h5移动端拖拽效果(仿手机开锁那种效果) 31 | 32 | ![Alt text](https://github.com/lilyping/H5-animate-/blob/master/%E4%B8%AD%E7%A7%8Bh5%E5%AE%A3%E4%BC%A0%E9%A1%B5/images/showPic5.png) 33 | 34 | 部分说明:第五页,使用了背景图,由远到近的效果 35 | -------------------------------------------------------------------------------- /中秋h5宣传页/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /中秋h5宣传页/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /中秋h5宣传页/.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 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 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 132 | 133 | 134 | 135 | arr 136 | img 137 | page2_title 138 | page2_endText 139 | row_logo 140 | .music 141 | body 142 | head 143 | page2_alert2 144 | bounceInDown 145 | flipX 146 | family 147 | .page2_content .companyList 148 | .logoText 149 | .page2_content .companyList .row .row_logo 150 | .textAll .logoText 151 | 正威 152 | font-size 153 | .circle 154 | .cLoad 155 | logo 156 | #load i 157 | gb2312 158 | page1_progress2 159 | page1_btn 160 | 161 | 162 | 163 | 176 | 177 | 178 | 179 | 180 | true 181 | DEFINITION_ORDER 182 | 183 | 184 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 |