2021-05-20 08:58:05 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2021-11-29 19:05:13 +01:00
|
|
|
<script src="<?php echo $_SERVER["FRONT_URL"] ?>/iframe_api.js"></script>
|
2021-07-20 19:54:45 +02:00
|
|
|
<script>
|
|
|
|
window.addEventListener('load', () => {
|
|
|
|
document.getElementById('show/hideLayer').onclick = () => {
|
|
|
|
if (document.getElementById('show/hideLayer').checked) {
|
|
|
|
WA.room.showLayer('crystal');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
WA.room.hideLayer('crystal');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
</script>
|
2021-05-20 08:58:05 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
|
|
<label for="show/hideLayer">Crysal Layer : </label><input type="checkbox" id="show/hideLayer" name="visible" value="show" checked>
|
|
|
|
</div>
|
|
|
|
</body>
|
2021-11-29 19:05:13 +01:00
|
|
|
</html>
|