Automatically adds CSS3 transitions to your website/blog and the WordPress admin. Links, etc. get animated transitions between their normal and hover
FAQ
Installation Instructions
- Take the easy route and install through the WordPress plugin adder OR
- Download the .zip file and upload the unzipped folder to the
/wp-content/plugins/
directory
- Activate the plugin through the ‘Plugins’ menu in WordPress
- CSS3 transitions should automatically be added to your site and WordPress, as long as your theme has the
<?php wp_head() ?>
action hook
The Transitions Aren’t Working…
First, make sure you know what the transitions look like (and you need to be using a mouse, not touch, for the majority of them, although they will show up for things that have css changes because of javascript too). Then, make sure that you are using a supported browser (Chrome, Internet Explorer 10+, Firefox 16+, Opera 12+, Safari 4+). Next, make sure that your theme’s links have a different color or other effects when you mouse over them. This is the change that will be animated. Then, make sure that your theme’s header.php
file contains the <?php wp_head() ?>
action hook. If none of that works, it’s likely that your theme doesn’t support transitions or has explicitly blocked them. However, you should still get the effects in the WordPress admin area if your browser supports them.
Where’s the settings page?
For simplicity’s sake, no settings page is included. While there are a few potential options, I don’t feel that they would be worth the extra bloat of a settings page. If you would like to make adjustments (such as changing the animation duration), you may do so by editing the plugin’s php file.
ChangeLog
1.3
- Introduce improved animation timing function (cubic-bezier(0.64,0.20,0.02,0.35))
- Remove -moz-, -ms-, and -o- browser prefixes. -webkit- is still required for Safari and older Android, but all other major browsers now support unprefixed transitions.
- Make the transitions faster
- Tested with WordPress 3.6 and the Twenty Thirteen theme
1.2
- Fixed a bug where transitions were being applied to the WordPress 3.5 color picker
- Fixed a bug where transitions were being applied to the WordPress nav menu editor drag-and-drop
1.1
- Fixed bug that made managing menus in the admin almost unusable because of unneeded transitions.
- Added targeting for several more elements, mostly form-related
- Updated readme
1.0
- First publically available version of the plugin
- Tested with WordPress 3.4 and 3.5. Should be compatible with most versions of WordPress