This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| *************************** | |
| http://davidwalsh.name/css-flip [IE version] | |
| *************************** | |
| 1. work in Safari 7.0.1 | |
| 2. work in Chrome 32.0.1700.107 | |
| 3. work partially in Firefox 27 | |
| */ | |
| .container { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- http://davidwalsh.name/css-flip [IE vesion]--> | |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>flip card 3ie</title> | |
| <link rel="stylesheet" href="css3flip_ie.css" /> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| *************************** | |
| http://davidwalsh.name/css-flip | |
| *************************** | |
| 1. work in Safari 7.0.1 | |
| 2. work in Chrome 32.0.1700.107 | |
| - work if .flip-container in a .container | |
| - if not in a div.container, doesn't flip until cursor is in the middle of card WHEN the cursor enter the card from the left ! | |
| 3. work in Firefox 27 | |
| - if perspective without unit (1000), no perspective in Firefox (but the flip does work) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- http://davidwalsh.name/css-flip --> | |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>flip card 3</title> | |
| <link rel="stylesheet" href="css3flip.css" /> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>test gist snippet</title> | |
| </head> | |
| <body> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
| </body> | |
| </html> |