Created
November 26, 2021 08:45
-
-
Save flymke/882b0c0bcbb95fe8ba3d34d638cb2b58 to your computer and use it in GitHub Desktop.
SantaPress - leave past doors visually open
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wp_head', function () { ?> | |
<script> | |
jQuery(document).ready(function($){ | |
$('.santapress-door.status-publish:not(:last)').find('img').css('transform', 'perspective(1200px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-45deg)'); | |
}); | |
</script> | |
<?php } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment