CSS gradient colors can't be animated. This demo shows a workaround. Hover to see it in action. Implementation on left, visual explanation on right.
Blog post: Gradient Animation Trick
| <html> | |
| <head> | |
| <script olis is gay></script> | |
| </head> | |
| </html> |
| ir { | |
| border: 0; | |
| font: 0/0 a; | |
| text-shadow: none; | |
| color: transparent; | |
| background-color: transparent; | |
| } |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.com | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query | |
| * Source: http://core.trac.wordpress.org/browser/tags/3.3.1/wp-includes/query.php | |
| */ | |
| $args = array( |
| eg: URL: yayhooray.net/#foo!bar | |
| var $str = window.location.hash; | |
| var $substr = $str.split('!'); | |
| alert($str); // #foo!bar | |
| alert($substr[0]); // #foo | |
| alert($substr[1]); // bar |
| if(window.location.hash) { | |
| var hash = window.location.hash.substring(1); //Puts hash in variable, and removes the # character | |
| alert (hash); | |
| // hash found | |
| } else { | |
| // No hash found | |
| } |
| var $ = jQuery.noConflict(); | |
| $(document).ready(function() { | |
| }); |
| function is_touch_device() { | |
| try { | |
| document.createEvent("TouchEvent"); | |
| return true; | |
| } catch (e) { | |
| return false; | |
| } | |
| } | |
| if(is_touch_device()) { |
| <? | |
| if( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['insert_post'] )) { //check that our form was submitted | |
| $title = $_POST['thread_title']; //set our title | |
| if ($_POST['thread_description']=="") { // check if a description was entered | |
| $description = "See thread title..."; // if not, use placeholder | |
| } else { | |
| $description = $_POST['thread_description']; //if so, use it |
CSS gradient colors can't be animated. This demo shows a workaround. Hover to see it in action. Implementation on left, visual explanation on right.
Blog post: Gradient Animation Trick
The reason you might not be able to remove the Open Sans font that Wordpress >= 3.8 adds to the frontend is that quite a few WP styles and scripts list 'open-sans' as a dependancy when being registered and enqueued. When you remove the 'open-sans' style the other plugins dependant on it will not load. So you just need to deregister WP's open sans style and register your own, with a false value for the src like below.
Credit to seventhsteel from http://wordpress.org/support/topic/turning-off-open-sans-for-the-38-dashboard