commit
5bf96b1c0b
4 changed files with 122 additions and 130 deletions
10
Rules
10
Rules
|
@ -45,16 +45,6 @@ compile '/feed.xml' do
|
||||||
write '/feed.xml'
|
write '/feed.xml'
|
||||||
end
|
end
|
||||||
|
|
||||||
#
|
|
||||||
# CAMMIE
|
|
||||||
#
|
|
||||||
compile '/cammie.*' do
|
|
||||||
layout '/default.*'
|
|
||||||
filter :erb
|
|
||||||
|
|
||||||
filter :relativize_paths, type: :html
|
|
||||||
end
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# ARCHIVES
|
# ARCHIVES
|
||||||
#
|
#
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
# Reworked version of the underscorejs debounce
|
||||||
|
debounce = (func, wait, initial = () -> ) ->
|
||||||
|
timeout = false
|
||||||
|
() ->
|
||||||
|
context = this
|
||||||
|
args = arguments
|
||||||
|
later = () ->
|
||||||
|
timeout = null
|
||||||
|
func.apply context, args
|
||||||
|
callNow = !timeout
|
||||||
|
clearTimeout timeout
|
||||||
|
timeout = setTimeout later, wait
|
||||||
|
initial.apply context, args if callNow
|
||||||
|
|
||||||
|
# Display controls when moving mouse
|
||||||
|
$ "#cammie-ctrls"
|
||||||
|
.mousemove debounce () ->
|
||||||
|
$ this
|
||||||
|
.removeClass 'display'
|
||||||
|
, 3000, () ->
|
||||||
|
$ this
|
||||||
|
.addClass 'display'
|
||||||
|
|
||||||
|
# Cammie controls
|
||||||
|
$ '.ctrl'
|
||||||
|
.click ->
|
||||||
|
$context = $ this
|
||||||
|
$.ajax "//kelder.zeus.ugent.be/webcam/cgi/ptdc.cgi",
|
||||||
|
data:
|
||||||
|
command: $context.data 'command'
|
||||||
|
posX: $context.data 'x'
|
||||||
|
posY: $context.data 'y'
|
|
@ -1,68 +1,52 @@
|
||||||
#cammie-container {
|
#cammie-body {
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
width: 100%;
|
#cammie-ctrls {
|
||||||
}
|
|
||||||
|
|
||||||
.fullpage {
|
|
||||||
min-width: 100%;
|
|
||||||
min-height: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#cammie-section {
|
|
||||||
position: relative;
|
|
||||||
height: 100%;
|
|
||||||
#cammie-body {
|
|
||||||
position: relative;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ctrl {
|
|
||||||
background-color: $cammie-controls-color;
|
|
||||||
color: white;
|
|
||||||
z-index: 100;
|
|
||||||
position: absolute;
|
|
||||||
|
|
||||||
// Chevron centering
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: space-between;
|
||||||
align-items: center;
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
&:hover {
|
transition: opacity 1s ease-in-out;
|
||||||
background-color: $zeus_orange;
|
z-index: 5;
|
||||||
z-index: 200;
|
opacity: 0;
|
||||||
cursor: pointer;
|
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
|
||||||
|
.columns {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.center {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.display {
|
||||||
|
transition: opacity .5s ease-in-out;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ctrl {
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
// Center arrows
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
background-color: $cammie-controls-color;
|
||||||
|
color: white;
|
||||||
|
&:hover {
|
||||||
|
background-color: $zeus_orange;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.diag i {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.left {
|
|
||||||
height: 100%;
|
|
||||||
width: 50px;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right {
|
|
||||||
height: 100%;
|
|
||||||
width: 100px;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.up {
|
|
||||||
height: 100px;
|
|
||||||
width: 100%;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.down {
|
|
||||||
height: 100px;
|
|
||||||
width: 100%;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,74 +2,60 @@
|
||||||
navigable: true
|
navigable: true
|
||||||
title: Cammie
|
title: Cammie
|
||||||
---
|
---
|
||||||
|
<section id="cammie-section">
|
||||||
<section id="cammie-section" class="hero is-fullheight">
|
|
||||||
<!-- Hero header: will stick at the top -->
|
|
||||||
<div class="hero-head">
|
|
||||||
<%= render '/partials/_navbar.*' %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
<div id="cammie-body">
|
<div id="cammie-body">
|
||||||
<div id="left" class="ctrl">
|
<img id="cammie-feed" src="https://kelder.zeus.ugent.be/webcam/video/mjpg.cgi?profileid=2">
|
||||||
<%= fa 'chevron-left', size: '2x' %>
|
<div id="cammie-ctrls">
|
||||||
</div>
|
<div class="columns">
|
||||||
|
<div class="column is-1 ctrl diag left" data-command="set_relative_pos" data-x="-10" data-y="10">
|
||||||
<div id="right" class="ctrl">
|
<%= fa 'chevron-circle-left' %>
|
||||||
<%= fa 'chevron-right', size: '2x' %>
|
</div>
|
||||||
</div>
|
<div class="column ctrl center" data-command="set_relative_pos" data-x="0" data-y="10">
|
||||||
|
<%= fa 'chevron-circle-up' %>
|
||||||
<div id="up" class="ctrl">
|
</div>
|
||||||
<%= fa 'chevron-up', size: '2x' %>
|
<div class="column is-1 ctrl diag right" data-command="set_relative_pos" data-x="10" data-y="10">
|
||||||
</div>
|
<%= fa 'chevron-circle-up' %>
|
||||||
|
|
||||||
<div id="down" class="ctrl">
|
|
||||||
<%= fa 'chevron-down', size: '2x' %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<div id="cammie-body">
|
|
||||||
<div class="columns">
|
|
||||||
<div class="column">
|
|
||||||
<div class="ctrl left">
|
|
||||||
diag up left
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="column">
|
|
||||||
<div class="ctrl up">
|
<div class="columns center">
|
||||||
up
|
<div class="column is-1 ctrl left" data-command="set_relative_pos" data-x="-10" data-y="0">
|
||||||
|
<%= fa 'chevron-circle-left' %>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<!-- blank space -->
|
||||||
|
</div>
|
||||||
|
<div class="column is-1 ctrl right" data-command="set_relative_pos" data-x="10" data-y="0">
|
||||||
|
<%= fa 'chevron-circle-right' %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="column">
|
|
||||||
<div class="ctrl right">
|
<div class="columns">
|
||||||
diag up right
|
<div class="column is-1 ctrl diag left" data-command="set_relative_pos" data-x="-10" data-y="-10">
|
||||||
|
<%= fa 'chevron-circle-down' %>
|
||||||
|
</div>
|
||||||
|
<div class="column ctrl center" data-command="set_relative_pos" data-x="0" data-y="-10">
|
||||||
|
<%= fa 'chevron-circle-down' %>
|
||||||
|
</div>
|
||||||
|
<div class="column is-1 ctrl diag right" data-command="set_relative_pos" data-x="10" data-y="-10">
|
||||||
|
<%= fa 'chevron-circle-right' %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="columns cammie-ctrls">
|
|
||||||
<div class="column ctrl left">left</div>
|
|
||||||
<div class="column ctrl center">home?</div>
|
|
||||||
<div class="column ctrl right">right</div>
|
|
||||||
</div>
|
|
||||||
<div class="columns cammie-ctrls">
|
|
||||||
<div class="column ctrl left">diag down left</div>
|
|
||||||
<div class="column ctrl center">down</div>
|
|
||||||
<div class="column ctrl right">diag down right</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- Hero footer: will stick at the bottom -->
|
|
||||||
<div class="hero-foot">
|
|
||||||
<nav class="tabs is-boxed is-fullwidth">
|
|
||||||
<div class="container">
|
|
||||||
<ul>
|
|
||||||
<li><a>Kleine Tafel</a></li>
|
|
||||||
<li><a>Grote Tafel</a></li>
|
|
||||||
<li><a>Zetel</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</div>
|
</div>
|
||||||
|
<nav class="nav">
|
||||||
|
<div class="nav-center">
|
||||||
|
<a class="nav-item ctrl" href="#" data-command="set_pos" data-x="0" data-y="12">
|
||||||
|
Kleine tafel
|
||||||
|
</a>
|
||||||
|
<a class="nav-item ctrl" href="#" data-command="set_pos" data-x="50" data-y="10">
|
||||||
|
Grote tafel
|
||||||
|
</a>
|
||||||
|
<a class="nav-item ctrl" href="#" data-command="set_pos" data-x="50" data-y="22">
|
||||||
|
Zetel
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue