+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Flipping Card effect help

  1. #1
    whizynix02's Avatar
    whizynix02 is offline x10Hosting Member whizynix02 is an unknown quantity at this point
    Join Date
    Mar 2009
    Posts
    95

    Flipping Card effect help

    hello.. i need some help for my coding..

    i need a flipping card effect like, when a user click on my card it will show its back content and vise verse..

    eg. like in postcards... the front shows the photo then when clicked it shows the content of the back...

    anyone?? please help.. thanks... :happysad:
    think big, think Smart

  2. #2
    Twinkie is offline Banned Twinkie is an unknown quantity at this point
    Join Date
    Sep 2007
    Location
    Ft. Lauderdale, Florida
    Posts
    1,389

    Re: Flipping Card effect help

    Your going to want to do that in flash. I would recommend to create a thread in the Marketplace forums to ask someone to code that for you. Or alternatively, you could do it in Java or Silverlight, but they are not as good or supported.

  3. #3
    Chrisisrad is offline x10Hosting Member Chrisisrad is an unknown quantity at this point
    Join Date
    Mar 2008
    Posts
    23

    Re: Flipping Card effect help

    Quote Originally Posted by Twinkie View Post
    Your going to want to do that in flash. I would recommend to create a thread in the Marketplace forums to ask someone to code that for you. Or alternatively, you could do it in Java or Silverlight, but they are not as good or supported.

    Not true at all.
    Ive done just this in jQuery.
    while i will admit. its more work (image) wise.

    But ive done it.

    I use it for a dashboard like mac's osx that i made.
    When you press info it does the flip.
    My site http://www.adds0wn.co.cc Is Worth

  4. #4
    whizynix02's Avatar
    whizynix02 is offline x10Hosting Member whizynix02 is an unknown quantity at this point
    Join Date
    Mar 2009
    Posts
    95

    Re: Flipping Card effect help

    can i have a link or sample?
    think big, think Smart

  5. #5
    Twinkie is offline Banned Twinkie is an unknown quantity at this point
    Join Date
    Sep 2007
    Location
    Ft. Lauderdale, Florida
    Posts
    1,389

    Re: Flipping Card effect help

    Chrisisrad: Yeah I thought about doing it in JavaScript, but that would be more work than it is worth in my opinion.

    whizynix02: jQuery is a JavaScript library which has built in effects for you. You can get examples of how to work it at jquery.com

  6. #6
    Scoochi2's Avatar
    Scoochi2 is offline x10 Sophmore Scoochi2 is an unknown quantity at this point
    Join Date
    Aug 2008
    Location
    Southport!
    Posts
    185

    Re: Flipping Card effect help

    This is something that is easy to achieve without jQuery, or flash.
    JavaScript alone could do it. (html alone would be too messy)
    When clicked, use JS to switch the image (if showing front, change the source to the image for the back of the card else change the source to the image for the front).

    If desirable, you could alternatively use the mouseover and mouseout events to show the front and back of the cards without any clicking necessary. Fully working example follows (assuming image names are correct!).
    HTML Code:
    <img src="card1_front.png" alt="Card 1"
    onmouseover="src='card1_back.png'" onmouseout="src='card1_front.png'">
    If you want a fancy card-turning over effect as a transition, consider making the card images animated, without a loop. Simple!
    Last edited by Scoochi2; 07-24-2009 at 07:49 PM.
    If anyone can see it, my post was meant for anyone who reads it. Don't take it personally or think I'm being condescending... :nuts:

  7. #7
    whizynix02's Avatar
    whizynix02 is offline x10Hosting Member whizynix02 is an unknown quantity at this point
    Join Date
    Mar 2009
    Posts
    95

    Re: Flipping Card effect help

    Quote Originally Posted by Twinkie View Post
    whizynix02: jQuery is a JavaScript library which has built in effects for you. You can get examples of how to work it at jquery.com

    thanks for this info... i will browse on that link...
    Edit:
    Quote Originally Posted by Scoochi2 View Post
    This is something that is easy to achieve without jQuery, or flash.
    JavaScript alone could do it. (html alone would be too messy)
    When clicked, use JS to switch the image (if showing front, change the source to the image for the back of the card else change the source to the image for the front).

    If desirable, you could alternatively use the mouseover and mouseout events to show the front and back of the cards without any clicking necessary. Fully working example follows (assuming image names are correct!).
    HTML Code:
    <img src="card1_front.png" alt="Card 1"
    onmouseover="src='card1_back.png'" onmouseout="src='card1_front.png'">
    If you want a fancy card-turning over effect as a transition, consider making the card images animated, without a loop. Simple!

    thanks for this info... i can use this to some of my effects... but i need on the back side is an info from a variable... like in post cards... a user can write his/her message...
    Last edited by whizynix02; 07-24-2009 at 08:51 PM. Reason: Automerged Doublepost
    think big, think Smart

  8. #8
    nexhunter's Avatar
    nexhunter is offline x10 Sophmore nexhunter is an unknown quantity at this point
    Join Date
    Nov 2007
    Location
    millbury,massachusetts
    Posts
    239

    Re: Flipping Card effect help

    You could do dynamic images and use sql to store the information and use a unique identifier to select from the table the specific field from where then the image would be generated with that data.
    Last edited by nexhunter; 07-24-2009 at 09:23 PM.



  9. #9
    whizynix02's Avatar
    whizynix02 is offline x10Hosting Member whizynix02 is an unknown quantity at this point
    Join Date
    Mar 2009
    Posts
    95

    Re: Flipping Card effect help

    i foud this link http://jonraasch.com/blog/quickflip-2-jquery-plugin but i can't together the codes... i've download the jquery.quickflip.js ... but things doesn't work... maybe i put the code in the wrong place.. hmmm help please...
    think big, think Smart

  10. #10
    Twinkie is offline Banned Twinkie is an unknown quantity at this point
    Join Date
    Sep 2007
    Location
    Ft. Lauderdale, Florida
    Posts
    1,389

    Re: Flipping Card effect help

    Nice find whizynix02, you are going to have to send us a link to the page you are trying to integrate so we can check out whats wrong.

+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Reading a 4GB SD memory card on Laptop
    By pixelman in forum Computers & Technology
    Replies: 2
    Last Post: 02-24-2009, 07:27 PM
  2. HOW TO: Buy/Install a Graphics Card
    By frznmnky in forum Computers & Technology
    Replies: 5
    Last Post: 01-18-2008, 10:37 PM
  3. Graphics Card problems! Help URGENTLY Needed!
    By lambada in forum Computers & Technology
    Replies: 5
    Last Post: 11-10-2007, 12:30 PM
  4. Whats in your wallet?
    By Skyline4life in forum Off Topic
    Replies: 18
    Last Post: 06-25-2005, 10:26 AM
  5. Creating a Card Game Script
    By Rhianna in forum Scripts & 3rd Party Apps
    Replies: 17
    Last Post: 05-30-2005, 03:12 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers