The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Randomize your forum banner

2 posters

Go down

Tutorial Randomize your forum banner

Post by Ange Tuteur Fri 6 Feb 2015 - 10:06

Randomize your forum banner

This simple trick will allow you to display multiple banners on your forum at random. Only one banner will be shown at once, but it will be different each time you change or reload the page. This will work for any forum version. Smile

Randomize your forum banner Fafm10


Installation

Go to Administration Panel > Modules > JavaScript codes management, and create a new script.

Title : Random banner
Placement : In all the pages
Paste the following code :
Code:
$(function() {
  var banners = [
    'https://i.servimg.com/u/f38/18/21/60/73/b010.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b110.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b210.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b310.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b410.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b510.png'
  ],

  logo = document.getElementById('i_logo') || document.getElementById('logo') || document.getElementById('pun-logo');
  if (logo) (logo.tagName == 'IMG' ? logo : logo.firstChild).src = banners[Math.floor(Math.random() * banners.length)];
});


Modifications

There's only one simple modification for you to make. At the top of the script you'll see an array of banners :
Code:
  var banners = [
    'https://i.servimg.com/u/f38/18/21/60/73/b010.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b110.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b210.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b310.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b410.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b510.png'
  ],

You can replace or delete these image URLs, and add your own. Multiple banners should be separated by a comma, and the banner URL should be between quotes ! Here's an example of only two banners :
Code:
  var banners = [
    'https://i.servimg.com/u/f38/18/21/60/73/b010.png',
    'https://i.servimg.com/u/f38/18/21/60/73/b110.png'
  ],


As you can see, you can have as little or as many banners as you want ! Mr. Green




Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Tutorial Re: Randomize your forum banner

Post by skouliki Tue 11 Feb 2020 - 10:08

This code was updated to fit in with the new HTTPS address

updated 11.02.2020 by skouliki
skouliki
skouliki
Manager
Manager

Female Posts : 15391
Reputation : 1709
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum