mirror of
https://github.com/not-kennethreitz/convore.json.git
synced 2026-06-05 23:20:19 +00:00
1 line
1.5 KiB
JSON
1 line
1.5 KiB
JSON
[{"user_id": 6113, "stars": [], "topic_id": 3885, "date_created": 1297370225.6636081, "message": "The last feature I've discovered from CSS3 is the property Transform. It's a great step to replace \"complex\" languages like Javascript or ActionScript to do simples functionalities. I've seen a lot of interesting things with it : A simple zoom when your mouse is over a picture or a great 3d histogram. If you want to give it a try, check here : http://www.w3.org/TR/css3-2d-transforms/. For examples : http://debray-jerome.developpez.com/demos/transformations.html", "group_id": 1994, "id": 74110}, {"user_id": 6113, "stars": [], "topic_id": 3885, "date_created": 1297377020.9162719, "message": "I forgot to explain what is does... It's simply a property to rescale or rotate an element.", "group_id": 1994, "id": 75495}, {"user_id": 6113, "stars": [], "topic_id": 3885, "date_created": 1297384342.600426, "message": "A simple implementation for a photo zoom. Let's suppose you have an \"img\" with the class \"MyImageClass\":\n.MyImageClass\n{\n\t-webkit-transition-property: transform;\n -webkit-transition-duration: 1s;\n\t-moz-transition-property: transform;\n -moz-transition-duration: 1s;\n\t-o-transition-property: transform;\n -o-transition-duration: 1s;\n\ttransition-property: transform;\n transition-duration: 1s;\n}\n\n.MyImageClass:hover\n{\n\t-webkit-transform: scale(2);\n\t-moz-transform: scale(2);\n\t-o-transform: scale(2);\n\ttransform: scale(2);\n}", "group_id": 1994, "id": 76573}] |