I tried to make my homepage images random, but i want them to be different everytime. I mean, i don't want to show img1.png four times in a row. I tried to use cookies, but that was a disaster, i couldn't get it work. I have no idea how to get this work, any help, link or tutorial appreciated.
If it helps, here is my main function:
(function($){
$.randomImage = {
defaults: {
path: '101/images/',
myImages: ['img1.png', 'img1.png', 'img2.png', 'img3.png', 'img4.png']
}
}
$.fn.extend({
randomImage:function(config) {
var config = $.extend({}, $.randomImage.defaults, config);
return this.each(function() {
var imageNames = config.myImages;
var imageNamesSize = imageNames.length;
var lotteryNumber = Math.floor(Math.random()*imageNamesSize);
var winnerImage = imageNames[lotteryNumber];
var fullPath = config.path + winnerImage;
$(this).attr( {
src: fullPath,
alt: winnerImage
});
});
}
});
})(jQuery);
$(document).ready(function() { //Main Intro - below that, only intro fadein and outs.
$('#loadlayyer').fadeOut(2000, function() {});
$('#shuffle').randomImage().ready(function() {
$('#shuffle').fadeIn(2500, function() {}).ready(function() {
$('#shuffle').one("dblclick", function() {
$('#leftcolumn').add('#rightcolumn').add('#shuffle').fadeOut(3000, function() {}).ready(function() {
$('#bookofblood').add('#highwaysofdead').fadeIn(3000, function() {});
});
$('#bookofblood').one("dblclick", function() {
$('#leftcolumn').add('#rightcolumn').add('#shuffle').fadeIn(3000, function() {}).ready(function() {
$('#bookofblood').add('#highwaysofdead').fadeOut(3000, function() {});
});
});
});
});
});
});