Team:UNITN-Trento/JS/Team

From 2013.igem.org

(Difference between revisions)
Line 22: Line 22:
$(this).click(function(e) {
$(this).click(function(e) {
e.preventDefault();
e.preventDefault();
-
alert(1);
+
if ( 'img' == $(this).attr( 'data-type' ) ) {
 +
div = $('<div/>');
 +
$(div).addClass( 'hoverTag' );
 +
$(div).html( '<img src="' + $(this).attr('src') + '" />' );
 +
$(div).click(function(e) {
 +
e.preventDefault();
 +
$(div).remove();
 +
});
 +
$('body').append(div);
 +
}
});
});
});
});
});
});

Revision as of 07:35, 13 August 2013

function swapBg(img) { alt = $(img).attr('data-alt'); src = $(img).attr('src'); $(img).fadeOut('fast', function() { $(img).attr('src',alt); $(img).attr('data-alt',src); $(img).fadeIn(); }); }

$(document).ready(function() { $( '#jms-slideshow' ).jmslideshow();

$('#jms-slideshow .image').each(function() { $(this).click(function(e) { e.preventDefault(); swapBg($(this).children('img')); }); });

$('#tn-content .tag').each(function() { $(this).click(function(e) { e.preventDefault(); if ( 'img' == $(this).attr( 'data-type' ) ) { div = $('<div/>'); $(div).addClass( 'hoverTag' ); $(div).html( '<img src="' + $(this).attr('src') + '" />' ); $(div).click(function(e) { e.preventDefault(); $(div).remove(); }); $('body').append(div); } }); }); });