Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
$(".thumbs img").fadeTo("slow", 0.6);
$(".thumbs img").hover(function(){
$(".thumbs img").fadeTo("slow", 1.0); // This sets the opacity to 100% on hover
},function(){
$(".thumbs img").fadeTo("slow", 0.6); // This sets the opacity back to 60% on mouseout
});
});
$(document).ready(function(){
$(".thumbs img").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
$(".thumbs img").hover(function(){
$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("slow", 0.6); // This should set the opacity back to 60% on mouseout
});
});
1 to 18 of 18