Activity Stream
48,167 MEMBERS
6731 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 7 of 7
  1.     
    #1
    Banned

    Default how can i do this with images?

    hello,

    i want in my wordpress the next with images. when you go with your mouse on the image you get a text, how can i do this?

    example: http://crackpick.com/misc.php?do=page&template=Hepsi
    kuzukuzu Reviewed by kuzukuzu on . how can i do this with images? hello, i want in my wordpress the next with images. when you go with your mouse on the image you get a text, how can i do this? example: http://crackpick.com/misc.php?do=page&template=Hepsi Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Banned
    Jquery and CSS

  4.     
    #3
    Banned
    yeah but i cant code, can please anyone help me with a code

  5.     
    #4
    Banned
    Got it:

    To create the puff popup bubble effect, we need the following:

    1. Markup that assumes that JavaScript is disabled. It would be fair to say that the popup would be hidden from the CSS.
    2. The hidden popup, correctly styled for when we make it appear.
    3. jQuery to animate the puff effect on mouseover and mouseout.

    The biggest trick to be wary of is: when you move the mouse over the popup, this triggers a mouseout on the image used to trigger the popup being shown. I?ll explain (carefully) how to make sure the effect doesn?t fail in this situation.
    I?ve provided a screencast to walk through how create this functionality. Details on how and what I used can be found below.

    ------------------------------------------------------------------------
    HTML Markup

    For the purpose of reusability, I?ve wrapped my ?target? and ?popup? in a div. The target is the element which the user must mouseover to show the popup.
    <div class="bubbleInfo">
    <img class="trigger" src="http://mysite.com/path/to/image.png" />
    <div class="popup">
    <!-- your information content -->
    </div>
    </div> CSS

    There?s very little to the minimum required CSS. Of course, how you markup your bubble will change this, and the screencast uses the version from the Coda web site, so there?s a considerable amount of CSS to style the bubble.
    The minimum I recommend for the example is:
    .bubbleInfo {
    position: relative;
    }

    .popup {
    position: absolute;
    display: none; /* keeps the popup hidden if no JS available */
    }
    This way we can absolutely position the popup against the trigger.


    ------------------------------------------------------------------------
    jQuery

    To create the effect, we need to run the following animation on the popup element:
    Mouse Over


    1. On mouseover: reset the position of the popup (required because we?re floating upwards as we puff away).
    2. Animate the popup?s opacity from 0 to 1 and move it?s CSS top position by negative 10px (to move upwards).
    3. If the mouseover is fired again, and we?re still animating - ignore.
    4. If the mouseover is fired again, and the popup is already visible - ignore.

    Mouse Out


    1. Set a timer to trigger the popup hide function (this prevents accidentally moving out of the ?active? area).
    2. If a timer is set (to hide), reset the timer (thus only allowing one hide function to fire).
    3. Once timed out, animiate the popup?s opacity from 1 to 0 and move it?s CSS top position by negative 10px (to float upwards away).
    4. Set the appropriate flags to indicate the popup is now hidden.

    ------------------------------------------------------------------------

    The ?Trick?

    There was one piece of tricky logic that initially I couldn?t work out. Each time I moved the mouse over the popup, it would fire a mouseout on the trigger element - which would hide the popup. This is an undesirable bug.
    There may be a another way around this, and from what I can tell, the Coda site developers didn?t solve it this way - but here?s the solution:
    You need to clear the timer set in the mouseout (point 1 above) in the mouseover. This completely solves the problem.


    Demo:
    ------------------------------------------------------------------------


    please +REP me !

  6.     
    #5
    Banned
    u need to modify this script to work as at that site

  7.     
    #6
    Banned
    i cant code

  8.     
    #7
    Member
    o zaman ogren

    you can also find someone who can do that for you, or download a template?
    "Keep your friends close and your enemies even closer"
    -Sun Tzu

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. CH Images
    By BlueError in forum Graphics Area
    Replies: 1
    Last Post: 24th Apr 2012, 10:51 PM
  2. Broken Images overlapping New Images
    By Leeds in forum vBulletin
    Replies: 8
    Last Post: 17th Apr 2012, 08:57 PM
  3. Replies: 11
    Last Post: 11th Feb 2011, 11:58 PM
  4. Images Watermarker of my Images and Upload it!!
    By Bytes in forum Completed Transactions
    Replies: 11
    Last Post: 5th Aug 2010, 11:24 AM

Tags for this Thread

BE SOCIAL