├── about.html ├── audio ├── alice.mp3 └── shake.wav ├── css └── common.css ├── doc ├── accelerometer.html ├── android.html ├── audio.html ├── barcode.html ├── cache.html ├── camera.html ├── console.html ├── contacts.html ├── device.html ├── downloader.html ├── events.html ├── fingerprint.html ├── gallery.html ├── geolocation.html ├── interface-orientation.html ├── io.html ├── ios.html ├── key.html ├── maps.html ├── messaging.html ├── native.js.html ├── nativeUI.html ├── nativeobj.html ├── navigator.html ├── oauth.html ├── orientation.html ├── payment.html ├── proximity.html ├── push.html ├── res │ ├── doc.css │ ├── doc.js │ ├── prettify.js │ └── prettify.sons.css ├── runtime.html ├── share.html ├── speech.html ├── splashscreen.html ├── statistic.html ├── storage.html ├── uploader.html ├── video.html ├── webview.html ├── xhr.html └── zip.html ├── icon.png ├── img ├── 5.jpg ├── add.png ├── arecord.png ├── astop.png ├── barcode.png ├── fdir.png ├── fdisk.png ├── ffile.png ├── fup.png ├── h5p.jpg ├── helloh5.jpg ├── mp.png ├── orientationa.png ├── orientationb.png ├── orientationbg.png ├── orientationc.png ├── orientationl.png ├── pull_arrow.png ├── pull_fresh.png ├── qr.png ├── shake │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── 4.jpg ├── shakedown.png ├── shakeup.png ├── ui.png └── waiting.png ├── index.html ├── js ├── common.js ├── immersed.js ├── shortcut.js ├── update.js └── update.json ├── logo.png ├── manifest.json ├── plus ├── accelerometer.html ├── accelerometer_shake.html ├── audio.html ├── barcode.html ├── barcode_scan.html ├── barcode_scan2.html ├── camera.html ├── camera_image.html ├── camera_video.html ├── device.html ├── doc.html ├── downloader.html ├── events.html ├── file.html ├── gallery.html ├── geolocation.html ├── maps.html ├── maps_map.html ├── maps_map_sub.html ├── message.html ├── nativeobj.html ├── nativeobj_animation.html ├── nativeui.html ├── nativeui_waiting.html ├── navigator.html ├── navigator_status.html ├── njs.html ├── njs_android_shortcut.html ├── njs_efficient.html ├── njs_ios_gamecenter.html ├── oauth.html ├── orientation.html ├── orientation_compass.html ├── orientation_level.html ├── payment.html ├── payment_iap.html ├── proximity.html ├── push.html ├── runtime.html ├── runtime_launch.html ├── share.html ├── share_qq.html ├── share_sinaweibo.html ├── share_weixin.html ├── speech.html ├── speech_custom.html ├── statistic.html ├── storage.html ├── uploader.html ├── uploader_ret.html ├── video.html ├── video_livepusher.html ├── video_videoplayer.html ├── video_videoplayer_sub.html ├── webview.html ├── webview_animation.html ├── webview_embed.html ├── webview_float.html ├── webview_mask.html ├── webview_mask_side.html ├── webview_new.html ├── webview_pullhead.html ├── webview_pullhead_custom.html ├── webview_pullrefresh.html ├── webview_pullrefresh_custom.html ├── webview_pulltorefresh.html ├── xhr.html └── zip.html ├── sa.png ├── sa@2x.png └── sa@3x.png /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/about.html -------------------------------------------------------------------------------- /audio/alice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/audio/alice.mp3 -------------------------------------------------------------------------------- /audio/shake.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/audio/shake.wav -------------------------------------------------------------------------------- /css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/css/common.css -------------------------------------------------------------------------------- /doc/accelerometer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/accelerometer.html -------------------------------------------------------------------------------- /doc/android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/android.html -------------------------------------------------------------------------------- /doc/audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/audio.html -------------------------------------------------------------------------------- /doc/barcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/barcode.html -------------------------------------------------------------------------------- /doc/cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/cache.html -------------------------------------------------------------------------------- /doc/camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/camera.html -------------------------------------------------------------------------------- /doc/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/console.html -------------------------------------------------------------------------------- /doc/contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/contacts.html -------------------------------------------------------------------------------- /doc/device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/device.html -------------------------------------------------------------------------------- /doc/downloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/downloader.html -------------------------------------------------------------------------------- /doc/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/events.html -------------------------------------------------------------------------------- /doc/fingerprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/fingerprint.html -------------------------------------------------------------------------------- /doc/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/gallery.html -------------------------------------------------------------------------------- /doc/geolocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/geolocation.html -------------------------------------------------------------------------------- /doc/interface-orientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/interface-orientation.html -------------------------------------------------------------------------------- /doc/io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/io.html -------------------------------------------------------------------------------- /doc/ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/ios.html -------------------------------------------------------------------------------- /doc/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/key.html -------------------------------------------------------------------------------- /doc/maps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/maps.html -------------------------------------------------------------------------------- /doc/messaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/messaging.html -------------------------------------------------------------------------------- /doc/native.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/native.js.html -------------------------------------------------------------------------------- /doc/nativeUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/nativeUI.html -------------------------------------------------------------------------------- /doc/nativeobj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/nativeobj.html -------------------------------------------------------------------------------- /doc/navigator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/navigator.html -------------------------------------------------------------------------------- /doc/oauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/oauth.html -------------------------------------------------------------------------------- /doc/orientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/orientation.html -------------------------------------------------------------------------------- /doc/payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/payment.html -------------------------------------------------------------------------------- /doc/proximity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/proximity.html -------------------------------------------------------------------------------- /doc/push.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/push.html -------------------------------------------------------------------------------- /doc/res/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/res/doc.css -------------------------------------------------------------------------------- /doc/res/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/res/doc.js -------------------------------------------------------------------------------- /doc/res/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/res/prettify.js -------------------------------------------------------------------------------- /doc/res/prettify.sons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/res/prettify.sons.css -------------------------------------------------------------------------------- /doc/runtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/runtime.html -------------------------------------------------------------------------------- /doc/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/share.html -------------------------------------------------------------------------------- /doc/speech.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/speech.html -------------------------------------------------------------------------------- /doc/splashscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/splashscreen.html -------------------------------------------------------------------------------- /doc/statistic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/statistic.html -------------------------------------------------------------------------------- /doc/storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/storage.html -------------------------------------------------------------------------------- /doc/uploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/uploader.html -------------------------------------------------------------------------------- /doc/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/video.html -------------------------------------------------------------------------------- /doc/webview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/webview.html -------------------------------------------------------------------------------- /doc/xhr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/xhr.html -------------------------------------------------------------------------------- /doc/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/doc/zip.html -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/icon.png -------------------------------------------------------------------------------- /img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/5.jpg -------------------------------------------------------------------------------- /img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/add.png -------------------------------------------------------------------------------- /img/arecord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/arecord.png -------------------------------------------------------------------------------- /img/astop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/astop.png -------------------------------------------------------------------------------- /img/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/barcode.png -------------------------------------------------------------------------------- /img/fdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/fdir.png -------------------------------------------------------------------------------- /img/fdisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/fdisk.png -------------------------------------------------------------------------------- /img/ffile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/ffile.png -------------------------------------------------------------------------------- /img/fup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/fup.png -------------------------------------------------------------------------------- /img/h5p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/h5p.jpg -------------------------------------------------------------------------------- /img/helloh5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/helloh5.jpg -------------------------------------------------------------------------------- /img/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/mp.png -------------------------------------------------------------------------------- /img/orientationa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/orientationa.png -------------------------------------------------------------------------------- /img/orientationb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/orientationb.png -------------------------------------------------------------------------------- /img/orientationbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/orientationbg.png -------------------------------------------------------------------------------- /img/orientationc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/orientationc.png -------------------------------------------------------------------------------- /img/orientationl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/orientationl.png -------------------------------------------------------------------------------- /img/pull_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/pull_arrow.png -------------------------------------------------------------------------------- /img/pull_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/pull_fresh.png -------------------------------------------------------------------------------- /img/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/qr.png -------------------------------------------------------------------------------- /img/shake/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/shake/1.jpg -------------------------------------------------------------------------------- /img/shake/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/shake/2.jpg -------------------------------------------------------------------------------- /img/shake/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/shake/3.jpg -------------------------------------------------------------------------------- /img/shake/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/shake/4.jpg -------------------------------------------------------------------------------- /img/shakedown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/shakedown.png -------------------------------------------------------------------------------- /img/shakeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/shakeup.png -------------------------------------------------------------------------------- /img/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/ui.png -------------------------------------------------------------------------------- /img/waiting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/img/waiting.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/index.html -------------------------------------------------------------------------------- /js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/js/common.js -------------------------------------------------------------------------------- /js/immersed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/js/immersed.js -------------------------------------------------------------------------------- /js/shortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/js/shortcut.js -------------------------------------------------------------------------------- /js/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/js/update.js -------------------------------------------------------------------------------- /js/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/js/update.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/logo.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/manifest.json -------------------------------------------------------------------------------- /plus/accelerometer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/accelerometer.html -------------------------------------------------------------------------------- /plus/accelerometer_shake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/accelerometer_shake.html -------------------------------------------------------------------------------- /plus/audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/audio.html -------------------------------------------------------------------------------- /plus/barcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/barcode.html -------------------------------------------------------------------------------- /plus/barcode_scan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/barcode_scan.html -------------------------------------------------------------------------------- /plus/barcode_scan2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/barcode_scan2.html -------------------------------------------------------------------------------- /plus/camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/camera.html -------------------------------------------------------------------------------- /plus/camera_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/camera_image.html -------------------------------------------------------------------------------- /plus/camera_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/camera_video.html -------------------------------------------------------------------------------- /plus/device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/device.html -------------------------------------------------------------------------------- /plus/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/doc.html -------------------------------------------------------------------------------- /plus/downloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/downloader.html -------------------------------------------------------------------------------- /plus/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/events.html -------------------------------------------------------------------------------- /plus/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/file.html -------------------------------------------------------------------------------- /plus/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/gallery.html -------------------------------------------------------------------------------- /plus/geolocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/geolocation.html -------------------------------------------------------------------------------- /plus/maps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/maps.html -------------------------------------------------------------------------------- /plus/maps_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/maps_map.html -------------------------------------------------------------------------------- /plus/maps_map_sub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/maps_map_sub.html -------------------------------------------------------------------------------- /plus/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/message.html -------------------------------------------------------------------------------- /plus/nativeobj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/nativeobj.html -------------------------------------------------------------------------------- /plus/nativeobj_animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/nativeobj_animation.html -------------------------------------------------------------------------------- /plus/nativeui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/nativeui.html -------------------------------------------------------------------------------- /plus/nativeui_waiting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/nativeui_waiting.html -------------------------------------------------------------------------------- /plus/navigator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/navigator.html -------------------------------------------------------------------------------- /plus/navigator_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/navigator_status.html -------------------------------------------------------------------------------- /plus/njs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/njs.html -------------------------------------------------------------------------------- /plus/njs_android_shortcut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/njs_android_shortcut.html -------------------------------------------------------------------------------- /plus/njs_efficient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/njs_efficient.html -------------------------------------------------------------------------------- /plus/njs_ios_gamecenter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/njs_ios_gamecenter.html -------------------------------------------------------------------------------- /plus/oauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/oauth.html -------------------------------------------------------------------------------- /plus/orientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/orientation.html -------------------------------------------------------------------------------- /plus/orientation_compass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/orientation_compass.html -------------------------------------------------------------------------------- /plus/orientation_level.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/orientation_level.html -------------------------------------------------------------------------------- /plus/payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/payment.html -------------------------------------------------------------------------------- /plus/payment_iap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/payment_iap.html -------------------------------------------------------------------------------- /plus/proximity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/proximity.html -------------------------------------------------------------------------------- /plus/push.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/push.html -------------------------------------------------------------------------------- /plus/runtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/runtime.html -------------------------------------------------------------------------------- /plus/runtime_launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/runtime_launch.html -------------------------------------------------------------------------------- /plus/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/share.html -------------------------------------------------------------------------------- /plus/share_qq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/share_qq.html -------------------------------------------------------------------------------- /plus/share_sinaweibo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/share_sinaweibo.html -------------------------------------------------------------------------------- /plus/share_weixin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/share_weixin.html -------------------------------------------------------------------------------- /plus/speech.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/speech.html -------------------------------------------------------------------------------- /plus/speech_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/speech_custom.html -------------------------------------------------------------------------------- /plus/statistic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/statistic.html -------------------------------------------------------------------------------- /plus/storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/storage.html -------------------------------------------------------------------------------- /plus/uploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/uploader.html -------------------------------------------------------------------------------- /plus/uploader_ret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/uploader_ret.html -------------------------------------------------------------------------------- /plus/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/video.html -------------------------------------------------------------------------------- /plus/video_livepusher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/video_livepusher.html -------------------------------------------------------------------------------- /plus/video_videoplayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/video_videoplayer.html -------------------------------------------------------------------------------- /plus/video_videoplayer_sub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/video_videoplayer_sub.html -------------------------------------------------------------------------------- /plus/webview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview.html -------------------------------------------------------------------------------- /plus/webview_animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_animation.html -------------------------------------------------------------------------------- /plus/webview_embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_embed.html -------------------------------------------------------------------------------- /plus/webview_float.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_float.html -------------------------------------------------------------------------------- /plus/webview_mask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_mask.html -------------------------------------------------------------------------------- /plus/webview_mask_side.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_mask_side.html -------------------------------------------------------------------------------- /plus/webview_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_new.html -------------------------------------------------------------------------------- /plus/webview_pullhead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_pullhead.html -------------------------------------------------------------------------------- /plus/webview_pullhead_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_pullhead_custom.html -------------------------------------------------------------------------------- /plus/webview_pullrefresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_pullrefresh.html -------------------------------------------------------------------------------- /plus/webview_pullrefresh_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_pullrefresh_custom.html -------------------------------------------------------------------------------- /plus/webview_pulltorefresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/webview_pulltorefresh.html -------------------------------------------------------------------------------- /plus/xhr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/xhr.html -------------------------------------------------------------------------------- /plus/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/plus/zip.html -------------------------------------------------------------------------------- /sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/sa.png -------------------------------------------------------------------------------- /sa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/sa@2x.png -------------------------------------------------------------------------------- /sa@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/HelloH5plus/HEAD/sa@3x.png --------------------------------------------------------------------------------