all repos — h3rald @ 298c41157dff4ff23b2468d5bec5de12c499a494

The sources of https://h3rald.com

files/js/init.js

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
$(document).ready(function() {
		$.slider();
		$('#up-arrow').click(function(){ $.scrollTo('#header', 1000)});
		$('#down-arrow').click(function(){ $.scrollTo('#footer', 1000)});
		$('.half-hidden').each(function() {
			$(this).hover(function() {
				$(this).stop().animate({ opacity: 1.0 }, 300);
				},
				function() {
				$(this).stop().animate({ opacity: 0.3 }, 300);
				});
			});
		});