bde-liste/static/js/anim.js
2022-12-15 15:15:02 +01:00

16 lines
No EOL
377 B
JavaScript

$(window).on("load", function() {
/*let type = new TypeIt("#typed-data", {
speed: 10,
startDelay: 0,
cursor: true
})
.go();
$(document).on("click", function() {
type.options({speed: 1});
});*/
});
$("#prank-button").hover(function () { $('.hover-circle').fadeIn(100) }, function(){ $('.hover-circle').fadeOut(100) });