added new index.html and history.html to digitalglarus

This commit is contained in:
Levi 2016-08-09 00:54:25 -05:00
commit a27e7f9828
109 changed files with 14665 additions and 316 deletions

View file

@ -0,0 +1,17 @@
/* globals $, WOW */
$(function(){
new WOW().init();
$('.img-toggle').one('mouseover', toggleImage);
});
function toggleImage(e) {
var $this = $(this),
toggle_img = $this.attr('data-replaced'),
current_img = $this.attr('src');
$this.fadeOut(600, function() {
$this.attr('src', toggle_img);
$this.attr('data-replaced', current_img);
$this.fadeIn(900);
});
};