Looking for a rollover tutorial.

Discussion in 'HTML & Website Design' started by Starving SEO, Dec 18, 2008.

  1. #1
    I'm looking for a some rollover code that either changes the background cell image, or alternates layers or anything else. Something that looks like the thumbnail rollover on this page http://www.mysoti.com/mysoti/home.
     
    Starving SEO, Dec 18, 2008 IP
  2. MoWarez

    MoWarez Member

    Messages:
    39
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    43
    #2
    What you need my friend is photoshop :D i done some really nice roll over effects there and then all you need is google to find out how the roll over effect is done

    Let me google that for you
    http://letmegooglethatforyou.com/?q=rollover+effect+in+photoshop
    Code (markup):
    Greets :D
     
    MoWarez, Dec 19, 2008 IP
  3. jatazoulja

    jatazoulja Peon

    Messages:
    82
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #3
    it's jquery...

    there are two way to create a roll over...

    first a simple way would be a CSS Slidding door, i which you just displace the image each time you hover
    
    a:hover {
    background-position:top center !important;
    }
    a { background:url(image/url.gif) bottom center; }
    
    Code (markup):
    then of course there's javascript, there's a variety of ways you can create a mouse overs, you can use starndard DOM, or other frameworks such as jquery.

    But yes Photoshope can do that, Or even Dreamwaever's spry...

    :D
     
    jatazoulja, Dec 19, 2008 IP
  4. jatazoulja

    jatazoulja Peon

    Messages:
    82
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0