├── .gitignore ├── README.md ├── api ├── __init__.py ├── api.py └── param.py ├── app.py ├── config.py ├── requirements.txt ├── static ├── css │ ├── onepage-scroll.css │ └── wallpaper.css ├── favicon │ └── favicon.png ├── image │ ├── dl-white.png │ ├── dl.png │ └── zd.png └── js │ ├── jquery.lazyload.min.js │ ├── jquery.onepage-scroll.min.js │ └── wallpaper.js └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/api/api.py -------------------------------------------------------------------------------- /api/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/api/param.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/onepage-scroll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/static/css/onepage-scroll.css -------------------------------------------------------------------------------- /static/css/wallpaper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/static/css/wallpaper.css -------------------------------------------------------------------------------- /static/favicon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/static/favicon/favicon.png -------------------------------------------------------------------------------- /static/image/dl-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/static/image/dl-white.png -------------------------------------------------------------------------------- /static/image/dl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/static/image/dl.png -------------------------------------------------------------------------------- /static/image/zd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/static/image/zd.png -------------------------------------------------------------------------------- /static/js/jquery.lazyload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/static/js/jquery.lazyload.min.js -------------------------------------------------------------------------------- /static/js/jquery.onepage-scroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/static/js/jquery.onepage-scroll.min.js -------------------------------------------------------------------------------- /static/js/wallpaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/static/js/wallpaper.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalmXin/xin-wallpaper/HEAD/templates/index.html --------------------------------------------------------------------------------