v0.1 ready

This commit is contained in:
Senad Uka
2016-05-14 07:24:00 +02:00
parent 9906fa0a4e
commit 8c52ead52b
13 changed files with 11425 additions and 0 deletions

13
js/main.js Normal file
View File

@@ -0,0 +1,13 @@
var count = 0;
$(document).ready(function () {
$("#tekst").bigText({
horizontalAlign: 'left'
});
$("html").keyup(function(event) {
count += 10;
if (count > 100) count = 0;
$('#tekst').html(count);
})
});