mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 15:06:06 +00:00
Suite Osgild
This commit is contained in:
parent
9e296c3700
commit
7e68a3a286
17 changed files with 582 additions and 33 deletions
8
Docs/Osgild/scripts.js
Normal file
8
Docs/Osgild/scripts.js
Normal 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 + "%";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue