3d-interface/controllers/prototype/views/prototype.jade

55 lines
2.3 KiB
Plaintext
Raw Normal View History

2015-05-05 16:30:51 +02:00
extends ../../../views/withjs
block title
title #{title} - Prototype
block extrajs
2015-05-11 09:31:10 +02:00
script(src="/static/js/prototype/ArrowCamera.js")
script(src="/static/js/prototype/FixedCamera.js")
script(src="/static/js/prototype/OldFixedCamera.js")
script(src="/static/js/prototype/ReverseCamera.js")
script(src="/static/js/prototype/initScene.js")
script(src="/static/js/prototype/raycasterTools.js")
script(src="/static/js/prototype/Previewer.js")
script(src="/static/js/prototype/ButtonManager.js")
2015-05-11 12:04:37 +02:00
script(src="/static/js/prototype/Coin.js")
2015-05-18 15:33:14 +02:00
script(src="/static/js/Logger.js")
2015-05-19 15:43:09 +02:00
block configjs
block mainjs
2015-05-12 10:59:40 +02:00
script document.getElementById('music').volume = 0.5;
2015-05-05 16:30:51 +02:00
block extrahead
link(rel="stylesheet" href="/static/css/prototype.css")
block content
2015-05-19 16:57:30 +02:00
#main-div.panel-group(style={'margin-top':'10px', 'margin-bottom':'10px'})
block description
2015-05-05 16:30:51 +02:00
2015-05-13 11:58:20 +02:00
button#full.btn.btn-primary(style={'margin-right': '10px', 'margin-bottom': '10px'}) Fullscreen
2015-05-05 16:30:51 +02:00
button#reset.btn.btn-primary(style={'margin-right': '10px', 'margin-bottom':'10px'}) Reset camera
button#undo.btn.btn-default(style={'margin-right': '10px', 'margin-bottom': '10px'})
span.glyphicon.glyphicon-triangle-left('aria-hidden'="true")
button#redo.btn.btn-default(style={'margin-right': '10px', 'margin-bottom':'10px'})
span.glyphicon.glyphicon-triangle-right('aria-hidden'="true")
input#fullarrow(type="checkbox", style={'margin-right': '10px', 'margin-bottom': '10px'})
label(for="fullarrow" style={'margin-right':'10px'}) Full arrow
input#collisions(type="checkbox", style={'margin-right': '10px', 'margin-bottom': '10px'}, checked)
label(for="collisions" style={'margin-right':'10px'}) Collisions
input#showarrows(type="checkbox", style={'margin-right': '10px', 'margin-bottom': '10px'}, checked)
label(for="showarrows" style={'margin-right':'10px'}) Show arrows
2015-05-18 09:28:51 +02:00
input#recommendation(type="checkbox", style={'margin-right': '10px', 'margin-bottom': '10px'})
label(for="recommendation" style={'margin-right':'10px'}) Fixed prev
2015-05-12 10:59:40 +02:00
audio#music(controls, volume=0.5)
2015-05-12 14:48:10 +02:00
source(src="/static/data/music/bobomb.ogg")
2015-05-12 10:50:49 +02:00
source(src="/static/data/music/bobomb.mp3")
2015-05-12 10:03:45 +02:00
2015-05-05 16:30:51 +02:00
#container(style={'padding': '0px', 'margin': '0px'}, tabindex="1")