-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainscript.js
51 lines (39 loc) · 1.04 KB
/
mainscript.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"use strict";
const modelViewer = document.getElementById('model');
const animBtn = document.querySelectorAll('.btn-container button');
animBtn.forEach(btns => {
btns.onclick = () => {
modelViewer.animationName = btns.innerHTML;
}
})
// внизу два способа
// hidenBtn.onclick = () => {
// document.querySelector('.btn-container').classList.toggle('hide');
// if(hidenBtn.innerHTML == 'Hide') {
// hidenBtn.innerHTML = 'Show';
// }
// else {
// hidenBtn.innerHTML = 'Hide';
// }
// }
// function Anim(e) {
// modelViewer.animationName = e.innerHTML;
// }
// function Idle() {
// modelViewer.animationName = 'Idle';
// }
// function Dance() {
// modelViewer.animationName = 'Dance';
// }
// function Running() {
// modelViewer.animationName = 'Running';
// }
// function Death() {
// modelViewer.animationName = 'Death';
// }
// function Jump() {
// modelViewer.animationName = 'Jump';
// }
// function Walking() {
// modelViewer.animationName = 'Walking';
// }