Skip to content

Instantly share code, notes, and snippets.

@LeoEatle
Created August 8, 2016 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeoEatle/d24acdc084848370a249bf9064ad9be8 to your computer and use it in GitHub Desktop.
Save LeoEatle/d24acdc084848370a249bf9064ad9be8 to your computer and use it in GitHub Desktop.
3d Text effect - mousemove
<h1>94一站</h1>
jQuery(document).ready(function(){
$('h1').mousemove(function(e){
var rXP = (e.pageX - this.offsetLeft-$(this).width()/2);
var rYP = (e.pageY - this.offsetTop-$(this).height()/2);
$('h1').css('text-shadow', +rYP/10+'px '+rXP/80+'px rgba(227,6,19,.8), '+rYP/8+'px '+rXP/60+'px rgba(255,237,0,1), '+rXP/70+'px '+rYP/12+'px rgba(0,159,227,.7)');
});
});
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
body{
text-align:center;
background:#dfdfdf;
}
h1{
text-transform:uppercase;
font-size:72px;
font-family:'Verdana';
padding:30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment