Forums

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

Home Forums CSS Changeable Background Image

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #23547
    sophies
    Member

    Hi,

    I’m wondering if it would be possible to have the background image change when the user clicks a link. (Nothing else, just the background)

    The best example I can find is here: http://www.isaacmizrahiny.com/ (click on the little square, top right, underneath where it says "shop") — however I do not need a pop down menu. I was hoping to just have a few small thumbnails floating at the top of the page of different backgrounds.

    Thank you! Sorry if this is a stupid question, I’m new to all of this!

    -Sophie

    http://www.sophieshepherd.com

    #51008
    matt25
    Participant

    Try using jQuery, Chris has a tutorial on the basics here and a second here

    The jQuery website also has lots of tutorials (just search jQuery)
    I hope that helps

    #51010
    chazzwick
    Member

    Jquery is a good bet. In your html put:

    And the Jquery to change the background:

    Code:
    $(document).ready(function() {

    $(“a#style1”).click(function(){
    $(‘body’).css({ backgroundImage : “url(images/bg1.jpg)” });
    });
    $(“a#style2”).click(function(){
    $(‘body’).css({ backgroundImage : “url(images/bg2.jpg)” });
    });
    $(“a#style3”).click(function(){
    $(‘body’).css({ backgroundImage : “url(images/bg3.jpg)” });
    });
    });

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