v0.1 ready
This commit is contained in:
13
js/main.js
Normal file
13
js/main.js
Normal 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);
|
||||
})
|
||||
});
|
||||
Reference in New Issue
Block a user