dynamicweb/ungleich_page/static/ungleich_page/js/ungleich.js

18 lines
385 B
JavaScript
Raw Normal View History

2016-04-13 03:03:18 +00:00
/* 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);
});
};