├── .gitignore ├── LICENSE ├── README.md ├── packages ├── 3D翻转轮播幻灯片 │ ├── 001 │ │ ├── 001.jpg │ │ ├── 001a.png │ │ ├── 002.jpg │ │ ├── 002a.png │ │ ├── 003.jpg │ │ ├── 003a.png │ │ ├── 004.jpg │ │ ├── 004a.png │ │ ├── 005.jpg │ │ ├── 005a.png │ │ ├── 006.jpg │ │ └── 006a.png │ ├── bg │ │ ├── blank.png │ │ ├── controls.png │ │ ├── light-timer-glow.png │ │ ├── loading.gif │ │ ├── shadow.png │ │ ├── thumb-frame.png │ │ └── trans.png │ ├── css │ │ ├── slider-style.css │ │ └── style.css │ ├── images │ │ └── js │ │ │ └── cute.css3d.module.js │ ├── index.html │ └── js │ │ ├── cute.slider.js │ │ ├── cute.transitions.all.js │ │ └── modernizr.min.js ├── 3D行走木头人背景 │ ├── css │ │ └── style.css │ ├── img │ │ └── godofredoninja.png │ ├── index.html │ └── js │ │ ├── TweenMax.min.js │ │ ├── hammer.min.js │ │ ├── index.js │ │ └── jquery.min.js ├── svg跳舞花朵 │ ├── css │ │ └── style.css │ ├── index.html │ └── js │ │ ├── TweenMax.min.js │ │ └── index.js ├── 仿微信聊天 │ ├── css │ │ └── main.css │ ├── index.html │ └── js │ │ ├── jquery.min.js │ │ └── main.js ├── 幻灯片播放插件 │ ├── dist │ │ ├── css │ │ │ ├── lg-fb-comment-box.css │ │ │ ├── lg-fb-comment-box.css.map │ │ │ ├── lg-fb-comment-box.min.css │ │ │ ├── lg-transitions.css │ │ │ ├── lg-transitions.css.map │ │ │ ├── lg-transitions.min.css │ │ │ ├── lightgallery.css │ │ │ ├── lightgallery.css.map │ │ │ └── lightgallery.min.css │ │ ├── fonts │ │ │ ├── lg.eot │ │ │ ├── lg.svg │ │ │ ├── lg.ttf │ │ │ └── lg.woff │ │ ├── img │ │ │ ├── loading.gif │ │ │ ├── video-play.png │ │ │ ├── vimeo-play(1).png │ │ │ └── youtube-play.png │ │ └── js │ │ │ ├── lightgallery.js │ │ │ └── lightgallery.min.js │ ├── img │ │ ├── 1-1600.jpg │ │ ├── 1-375.jpg │ │ ├── 1-480.jpg │ │ ├── 1.jpg │ │ ├── 13-1600.jpg │ │ ├── 13-375.jpg │ │ ├── 13-480.jpg │ │ ├── 13.jpg │ │ ├── 2-1600.jpg │ │ ├── 2-375.jpg │ │ ├── 2-480.jpg │ │ ├── 2.jpg │ │ ├── 4-1600.jpg │ │ ├── 4-375.jpg │ │ ├── 4-480.jpg │ │ ├── 4.jpg │ │ ├── thumb-1.jpg │ │ ├── thumb-13.jpg │ │ ├── thumb-2.jpg │ │ └── thumb-4.jpg │ ├── index.html │ └── js │ │ ├── lg-autoplay.js │ │ ├── lg-autoplay.min.js │ │ ├── lg-fullscreen.js │ │ ├── lg-fullscreen.min.js │ │ ├── lg-hash.js │ │ ├── lg-hash.min.js │ │ ├── lg-pager.js │ │ ├── lg-pager.min.js │ │ ├── lg-share.js │ │ ├── lg-share.min.js │ │ ├── lg-thumbnail.js │ │ ├── lg-thumbnail.min.js │ │ ├── lg-video.js │ │ ├── lg-video.min.js │ │ ├── lg-zoom.js │ │ ├── lg-zoom.min.js │ │ ├── lightgallery.js │ │ ├── lightgallery.min.js │ │ └── picturefill.min.js ├── 底部多图轮播 │ ├── css │ │ ├── htmleaf-demo.css │ │ └── normalize.css │ ├── demo │ │ ├── deep-minified.html │ │ ├── no-jquery.html │ │ └── with-jquery.html │ ├── img │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── 04.jpg │ │ ├── 05.jpg │ │ ├── 06.jpg │ │ ├── 07.jpg │ │ ├── 08.jpg │ │ ├── 09.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── a17.png │ │ ├── loading.gif │ │ ├── t01.png │ │ ├── thumb-01.jpg │ │ ├── thumb-02.jpg │ │ ├── thumb-03.jpg │ │ ├── thumb-04.jpg │ │ ├── thumb-05.jpg │ │ ├── thumb-06.jpg │ │ ├── thumb-07.jpg │ │ ├── thumb-08.jpg │ │ ├── thumb-09.jpg │ │ ├── thumb-10.jpg │ │ ├── thumb-11.jpg │ │ └── thumb-12.jpg │ ├── index.html │ └── js │ │ ├── jquery-1.11.0.min.js │ │ ├── jssor.slider-21.1.6.debug.js │ │ ├── jssor.slider-21.1.6.min.js │ │ └── jssor.slider-21.1.6.mini.js ├── 搜索单页面 │ ├── css │ │ ├── bootstrap.min.css │ │ └── site.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.eot_ │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2.html │ ├── img │ │ ├── aliyun-logo.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ └── logo.png │ ├── index.html │ └── js │ │ ├── bootstrap.min.js │ │ └── main.js ├── 改变色块背景 │ ├── css │ │ └── style.css │ ├── index.html │ └── js │ │ └── index.js ├── 粒子掉落时钟 │ ├── countdown.js │ ├── digit.js │ └── index.html ├── 粒子效果背景 │ ├── css │ │ ├── component.css │ │ ├── demo.css │ │ └── normalize.css │ ├── img │ │ ├── demo-1-bg.jpg │ │ └── demo-2-bg.jpg │ ├── index.html │ ├── index2.html │ ├── index3.html │ ├── index4.html │ └── js │ │ ├── EasePack.min.js │ │ ├── TweenLite.min.js │ │ ├── demo-1.js │ │ ├── demo-2.js │ │ ├── demo-3.js │ │ ├── demo-4.js │ │ └── rAF.js ├── 自定义粒子动画 │ ├── index.html │ ├── normalize.min.css │ └── pen.svg ├── 轮播图变大 │ ├── css │ │ ├── sequence-theme.mono.css │ │ ├── sequence-theme.mono.css.map │ │ └── sequence-theme.mono.min.css │ ├── images │ │ ├── bananas.png │ │ ├── bananas@2x.png │ │ ├── coconut.png │ │ ├── coconut@2x.png │ │ ├── next.svg │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── prev.svg │ │ ├── tn-bananas.png │ │ ├── tn-bananas@2x.png │ │ ├── tn-coconut.png │ │ ├── tn-coconut@2x.png │ │ ├── tn-orange.png │ │ └── tn-orange@2x.png │ ├── index.html │ └── scripts │ │ ├── hammer.min.js │ │ ├── imagesloaded.pkgd.min.js │ │ ├── sequence-theme.mono.js │ │ ├── sequence-theme.mono.min.js │ │ ├── sequence.js │ │ ├── sequence.min.js │ │ └── sequence.min.map └── 页面过渡效果合集 │ ├── css │ ├── animations.css │ ├── component.css │ ├── default.css │ └── multilevelmenu.css │ ├── fonts │ └── menuicons │ │ └── icomoon.woff │ ├── index.html │ └── js │ ├── jquery-1.9.1.min.js │ ├── jquery.dlmenu.js │ ├── modernizr.custom.js │ └── pagetransitions.js └── pages ├── div全屏显示.html ├── 个人主页导航.html ├── 台湾网站查封单页面.html ├── 各种吱口令套路网页.html ├── 导航页面.html ├── 抽奖小游戏.html ├── 新浪每日搞笑动图.html ├── 照片墙特效.html ├── 照片展示.html ├── 独立站导航页面.html ├── 系统维护页面1.html ├── 系统维护页面2.html ├── 系统维护页面3.html ├── 网站自动跳转网页.html ├── 阿里云盘公告页.html ├── 韩文网站查封单页面.html └── 页面背景夕阳西下.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Alejandro 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # super-single-page 2 | 3 | 静态html单页面,极简,极炫~ 4 | 5 | ## pages 6 | 7 | | # | Project | Live Demo | 8 | | :-: | :----------------------------: | :-------: | 9 | | 01 |[导航页面](https://github.com/realwds/super-single-page/blob/gh-pages/pages/导航页面.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/导航页面.html)| 10 | | 02 |[独立站导航页面](https://github.com/realwds/super-single-page/blob/gh-pages/pages/独立站导航页面.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/独立站导航页面.html)| 11 | | 03 |[各种吱口令套路网页](https://github.com/realwds/super-single-page/blob/gh-pages/pages/各种吱口令套路网页.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/各种吱口令套路网页.html)| 12 | | 04 |[韩文网站查封单页面](https://github.com/realwds/super-single-page/blob/gh-pages/pages/韩文网站查封单页面.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/韩文网站查封单页面.html)| 13 | | 05 |[台湾网站查封单页面](https://github.com/realwds/super-single-page/blob/gh-pages/pages/台湾网站查封单页面.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/台湾网站查封单页面.html)| 14 | | 06 |[网站自动跳转网页](https://github.com/realwds/super-single-page/blob/gh-pages/pages/网站自动跳转网页.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/网站自动跳转网页.html)| 15 | | 07 |[系统维护页面1](https://github.com/realwds/super-single-page/blob/gh-pages/pages/系统维护页面1.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/系统维护页面1.html)| 16 | | 08 |[系统维护页面2](https://github.com/realwds/super-single-page/blob/gh-pages/pages/系统维护页面2.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/系统维护页面2.html)| 17 | | 09 |[系统维护页面3](https://github.com/realwds/super-single-page/blob/gh-pages/pages/系统维护页面3.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/系统维护页面3.html)| 18 | | 10 |[页面背景夕阳西下](https://github.com/realwds/super-single-page/blob/gh-pages/pages/页面背景夕阳西下.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/页面背景夕阳西下.html)| 19 | | 11 |[照片展示](https://github.com/realwds/super-single-page/blob/gh-pages/pages/照片展示.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/照片展示.html)| 20 | | 12 |[div全屏显示](https://github.com/realwds/super-single-page/blob/gh-pages/pages/div全屏显示.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/div全屏显示.html)| 21 | | 13 |[阿里云盘公告页](https://github.com/realwds/super-single-page/blob/gh-pages/pages/阿里云盘公告页.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/阿里云盘公告页.html)| 22 | | 14 |[新浪每日搞笑动图](https://github.com/realwds/super-single-page/blob/gh-pages/pages/新浪每日搞笑动图.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/新浪每日搞笑动图.html)| 23 | | 15 |[照片墙特效](https://github.com/realwds/super-single-page/blob/gh-pages/pages/照片墙特效.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/照片墙特效.html)| 24 | | 16 |[抽奖小游戏](https://github.com/realwds/super-single-page/blob/gh-pages/pages/抽奖小游戏.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/抽奖小游戏.html)| 25 | | 17 |[个人主页导航](https://github.com/realwds/super-single-page/blob/gh-pages/pages/个人主页导航.html)|[Live Demo](https://realwds.github.io/super-single-page/pages/个人主页导航.html)| 26 | 27 | ## packages 28 | 29 | | # | Project | Live Demo | 30 | | :-: | :----------------------------: | :-------: | 31 | | 01 |[底部多图轮播](https://github.com/realwds/super-single-page/blob/gh-pages/packages/底部多图轮播)|[Live Demo](https://realwds.github.io/super-single-page/packages/底部多图轮播)| 32 | | 02 |[仿微信聊天](https://github.com/realwds/super-single-page/blob/gh-pages/packages/仿微信聊天)|[Live Demo](https://realwds.github.io/super-single-page/packages/仿微信聊天)| 33 | | 03 |[改变色块背景](https://github.com/realwds/super-single-page/blob/gh-pages/packages/改变色块背景)|[Live Demo](https://realwds.github.io/super-single-page/packages/改变色块背景)| 34 | | 04 |[幻灯片播放插件](https://github.com/realwds/super-single-page/blob/gh-pages/packages/幻灯片播放插件)|[Live Demo](https://realwds.github.io/super-single-page/packages/幻灯片播放插件)| 35 | | 05 |[轮播图变大](https://github.com/realwds/super-single-page/blob/gh-pages/packages/轮播图变大)|[Live Demo](https://realwds.github.io/super-single-page/packages/轮播图变大)| 36 | | 06 |[搜索单页面](https://github.com/realwds/super-single-page/blob/gh-pages/packages/搜索单页面)|[Live Demo](https://realwds.github.io/super-single-page/packages/搜索单页面)| 37 | | 07 |[svg跳舞花朵](https://github.com/realwds/super-single-page/blob/gh-pages/packages/svg跳舞花朵)|[Live Demo](https://realwds.github.io/super-single-page/packages/svg跳舞花朵)| 38 | | 08 |[3D翻转轮播幻灯片](https://github.com/realwds/super-single-page/blob/gh-pages/packages/3D翻转轮播幻灯片)|[Live Demo](https://realwds.github.io/super-single-page/packages/3D翻转轮播幻灯片)| 39 | | 09 |[3D行走木头人背景](https://github.com/realwds/super-single-page/blob/gh-pages/packages/3D行走木头人背景)|[Live Demo](https://realwds.github.io/super-single-page/packages/3D行走木头人背景)| 40 | | 10 |[自定义粒子动画](https://github.com/realwds/super-single-page/blob/gh-pages/packages/自定义粒子动画)|[Live Demo](https://realwds.github.io/super-single-page/packages/自定义粒子动画)| 41 | | 11 |[粒子掉落时钟](https://github.com/realwds/super-single-page/blob/gh-pages/packages/粒子掉落时钟)|[Live Demo](https://realwds.github.io/super-single-page/packages/粒子掉落时钟)| 42 | | 12 |[粒子效果背景](https://github.com/realwds/super-single-page/blob/gh-pages/packages/粒子效果背景)|[Live Demo](https://realwds.github.io/super-single-page/packages/粒子效果背景)| 43 | | 13 |[页面过渡效果合集](https://github.com/realwds/super-single-page/blob/gh-pages/packages/页面过渡效果合集)|[Live Demo](https://realwds.github.io/super-single-page/packages/页面过渡效果合集)| 44 | 45 | ## Star History 46 | 47 |  48 | -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/001.jpg -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/001a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/001a.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/002.jpg -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/002a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/002a.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/003.jpg -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/003a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/003a.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/004.jpg -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/004a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/004a.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/005.jpg -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/005a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/005a.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/006.jpg -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/001/006a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/001/006a.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/bg/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/bg/blank.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/bg/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/bg/controls.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/bg/light-timer-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/bg/light-timer-glow.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/bg/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/bg/loading.gif -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/bg/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/bg/shadow.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/bg/thumb-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/bg/thumb-frame.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/bg/trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realwds/super-single-page/25aa7dacfb27a66133a8d91eb717a358406c7080/packages/3D翻转轮播幻灯片/bg/trans.png -------------------------------------------------------------------------------- /packages/3D翻转轮播幻灯片/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |嗨,小帅帅在此!您有什么想跟我说的,都可以在这里跟我讲哦!
21 | 22 |' + text + '
'; 58 | str += '' + Bene[Benelen] + '
'; 74 | ans += '不好意思,我听不清!
'; 98 | str += '我不知道你在说什么?
'; 104 | ans += '说明:鼠标或者键盘回车键控制抽奖或者结束
74 |