Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End How Do They Do It? (Banner Rotation)

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #25701
    al_m473
    Participant

    http://clwydmc.co.uk/

    the home page image at the top of the page changes each time you enter the page, how is this done?

    Al

    #61811
    EamonnMac
    Member

    I don’t see a Javascript being called, so perhaps a PHP image rotator? It certainly seems to be a random selection, several refreshes doesn’t seem to be revealing any particular order…

    Matt Mullenweg developed the code for a method to achieve this here: http://ma.tt/scripts/randomimage/ (it’s been improved upon since, but you’ll get all the detail from the site anyhow).

    EDIT – you might try this with the buffs in the Javascript or PHP forums, you’ll certainly get a better answer! ;)

    #61964
    freewebsites
    Member

    It will automatically change because of the links on it.

    #61965
    TheDoc
    Member

    I’m a huge fan of PHP for this. So much so that I’m moving this topic to the PHP section!

    You can simply use the rand() function to achieve the results. Here’s a really simple explanation:

    http://php.about.com/od/finishedphp1/qt … banner.htm

    Essentially, it’ll be something like this:

    <?php
    $num = rand(1, 5);
    ?>

    <img class="classname" alt="" src="images/banner-<?php echo $num; ?>.jpg" />

    #62092
    EamonnMac
    Member

    I like that a lot – look waaaaaay simpler than any other method I’ve seen. Nice one.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘Back End’ is closed to new topics and replies.