├── .gitignore ├── LICENSE ├── README.md ├── css └── style.css ├── index.d.ts ├── index.html ├── package.json ├── pic.html └── src └── pageSwitch.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.un~ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiboy/pageSwitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiboy/pageSwitch/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiboy/pageSwitch/HEAD/css/style.css -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiboy/pageSwitch/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiboy/pageSwitch/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiboy/pageSwitch/HEAD/package.json -------------------------------------------------------------------------------- /pic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiboy/pageSwitch/HEAD/pic.html -------------------------------------------------------------------------------- /src/pageSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiboy/pageSwitch/HEAD/src/pageSwitch.js --------------------------------------------------------------------------------