-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimations.html
47 lines (40 loc) · 1.34 KB
/
animations.html
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
{% extends 'index.html'%}
{% block content %}
<div class="card">
<div class="card-header">Animations - Active: <span class="badge badge-primary" id="activeAnimation">None</span>
<button type="button" class="btn btn-danger float-right" id="stopScript">Kill current animation</button>
</div>
<div class="card-body">
{% for script in scripts%}
<button type="button" class="btn btn-info btn-block" id="{{script}}">{{ script }}</button>
{% endfor %}
</div>
</div>
{% endblock %}
{% block script %}
<script>
{% for script in scripts%}
$('#{{script}}').on('click', function(e) {
$.ajax({
method: 'POST',
url: {{ url_for('startAnimation')|tojson }},
data: {'script': '{{ script }}' },
dataType: "json"
}).done(function(data) {
$("#activeAnimation").text(data.active_script);
});
console.log("Starting python animation: {{script}}");
});
{% endfor %}
$('#stopScript').on('click', function(e) {
$.ajax({
method: 'POST',
url: {{ url_for('stopAnimation')|tojson }},
data: {},
dataType: "json"
}).done(function(data) {
$("#activeAnimation").text(data.active_script);
});
});
</script>
{% endblock %}