Skip to content

Instantly share code, notes, and snippets.

@reediredale
Created June 29, 2012 02:31
Show Gist options
  • Save reediredale/3015310 to your computer and use it in GitHub Desktop.
Save reediredale/3015310 to your computer and use it in GitHub Desktop.
HTML5 Image Swap
<figure class="swapimage">
<img src="<?php $image = get_post_meta($post->ID, 'normal', true); ?><?php echo $image; ?>" alt="" />
<img src="<?php $hover = get_post_meta($post->ID, 'hover', true); ?><?php echo $hover; ?>" class="swap-target" alt="" />
</figure>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment