45 Royale Inc. « visit
This is my Source Code and I don't want to show it here
View Source Code only (as overlay)
// That code snippet belongs to 45 Royale Inc. - http://45royale.com
// Start jQuery
$(document).ready(function() {
// GLOBALS //
/* Hover functionality site-wide **********************************************/
$('.hover').hover(function() {
$(this).addClass('active');
}, function() {
$(this).removeClass('active');
});
/* Fade toggler ***************************************************************/
$.fn.fadeToggle = function(speed) {
return this.animate({opacity: 'toggle'}, speed);
};
/* Newsletter *****************************************************************/
$('form#newsletter').hide();
$('a.signup').click(function () {
$('form#newsletter').fadeToggle(200);
return false;
});
}); // End jQuery
// Start jQuery
$(document).ready(function() {
// HOME SCRIPTS //
/* Recent work switcher *******************************************************/
// Archive containers
var imgContainers = $('div#recentimages > img');
imgContainers.hide().filter(':first').show();
$('ul.recentitems li a').click(function () {
imgContainers.hide();
imgContainers.filter(this.hash).fadeIn(800);
$('ul.recentitems li a').removeClass('selected');
$(this).addClass('selected');
return false;
});
}); // End jQuery
Syndicate
Categories
Statistics
There are 330 Sites with 745 Links of Interest in 18 Categories. The latest Site was added 4 months ago.
About
This is a project by Sebastian Senf, for his part jQuery user and lover too. Follow me.