Files
old-makey-makey-count/js/main.js

23 lines
409 B
JavaScript
Raw Normal View History

2016-05-14 07:24:00 +02:00
var count = 0;
var pressing = false;
2016-05-14 07:24:00 +02:00
$(document).ready(function() {
2016-05-14 07:24:00 +02:00
$("#tekst").bigText({
horizontalAlign: 'left'
});
$('#tekst').html(count);
2016-05-14 07:24:00 +02:00
$("html").keyup(function(event) {
pressing = true;
setTimeout(function() {
if (pressing) {
count += 10;
if (count > 100) count = 0;
$('#tekst').html(count);
pressing = false;
}
}, 500);
2016-05-14 07:24:00 +02:00
})
});