Forums

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

Home Forums JavaScript jquery fade effect

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

    Hello!
    I want to make something similar with this

    http://s3.envato.com/files/1522522/index.html#/PORTFOLIO/image/img_3

    When you click on “description” appears a bunch of text.
    I want to make this with jquery, how can I make this ?

    #77206
    Damion
    Member

    $('#desc').click(function() {
    $('#descText').fadeIn(2000);
    }):

    If you click on a div with an ID of ‘desc’ a div with an ID of ‘descText’ will fade in over 2 seconds.

    Hope this helps,
    Damion.

    #75836
    dynamyc
    Member

    ok, I understand but I’m wondering if this effect will work with an external html page, so the actual page will fade out smoothly and the external html page will load smoothly.
    Hope you understand me.
    Thanks

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