1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00

Suite Osgild

This commit is contained in:
Yan Maniez 2020-01-16 21:25:11 +01:00
parent 9e296c3700
commit 7e68a3a286
17 changed files with 582 additions and 33 deletions

8
Docs/Osgild/scripts.js Normal file
View file

@ -0,0 +1,8 @@
function init() {
var range = document.getElementById("range");
var map = document.getElementById("map");
map.style.width = "" + range.value + "%";
range.oninput = function() {
map.style.width = "" + range.value + "%";
}
}