diff --git a/public_html/assets/phone/gogole.png b/public_html/assets/phone/gogole.png new file mode 100644 index 0000000..d79ab39 Binary files /dev/null and b/public_html/assets/phone/gogole.png differ diff --git a/public_html/assets/phone/utube.png b/public_html/assets/phone/utube.png new file mode 100644 index 0000000..afdbede Binary files /dev/null and b/public_html/assets/phone/utube.png differ diff --git a/public_html/assets/phone/webview/utube.html b/public_html/assets/phone/webview/utube.html new file mode 100644 index 0000000..12b9dda --- /dev/null +++ b/public_html/assets/phone/webview/utube.html @@ -0,0 +1,19 @@ + + + + + + Utube + + + + UTube vous propose sa sélection des meilleures vidéos ! + + + + + \ No newline at end of file diff --git a/public_html/game.html b/public_html/game.html index 0c10630..89496ab 100644 --- a/public_html/game.html +++ b/public_html/game.html @@ -41,6 +41,8 @@ + +
diff --git a/public_html/js/phone.js b/public_html/js/phone.js index acbb7b1..cb915cd 100644 --- a/public_html/js/phone.js +++ b/public_html/js/phone.js @@ -30,6 +30,14 @@ class Phone{ document.getElementById("appli-fb").addEventListener("click", (e) => { this.webviewName = "FakeBook" this.changeWindow("assets/phone/webview/fb.html") + }); + document.getElementById("appli-utube").addEventListener("click", (e) => { + this.webviewName = "uTube" + this.changeWindow("assets/phone/webview/utube.html") + }); + document.getElementById("appli-goo").addEventListener("click", (e) => { + this.webviewName = "Gogole" + this.changeWindow("https://mrdoob.com/projects/chromeexperiments/google-space/") }); }