Gir Posted July 28, 2015 Share Posted July 28, 2015 Hey everyone! I've been wondering lately if I could use html5, inline-css, and media queries to make a point-and-click game in webkit-supported email clients? It SEEMS feasible as webkit allows for the use of vector css such as: @-webkit-keyframes rotateIn { 0% { -webkit-transform-origin: center center; transform-origin: center center; -webkit-transform: rotate(-360deg); transform: rotate(-360deg); } 100% { -webkit-transform-origin: center center; transform-origin: center center; -webkit-transform: rotate(0); transform: rotate(0); } } I understand that there isn't much "graceful degradation" in this when it comes to older clients like Outlook or non-webkit supported clients like Gmail, but I'm optimistic for the future of email. Any advice or help with understanding the rules for something like this would be greatly appreciated. Thanks! P.S.- I've looked everywhere for documentation or even a thread on this, but have come up short. IamThatGuy 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.