Trying the new feature "background-clip: text", with background moving.
Created
December 3, 2019 07:50
-
-
Save hackistic/a9ec52b3a7bdd28f3cb249d1183bf162 to your computer and use it in GitHub Desktop.
Text-mask background moving on MouseMove - v2
This file contains hidden or 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
<!-- If you don't see it u probably are using a browser not based on webkit, so leave IE and grab anything else (Y) --> | |
<!-- UPDATE: works in Chrome & Safari, not Firefox. To solve that you could use an SVG insted of pure text. --> | |
<div class="container"> | |
<div class="title">HACKISTIC</div> | |
<div class="subtitle"> geek + smart + curious + nerd + ingenious + cunning = ME </div> | |
</div> |
This file contains hidden or 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
$(document).ready(function(){ | |
var mouseX, mouseY; | |
var ww = $( window ).width(); | |
var wh = $( window ).height(); | |
var traX, traY; | |
$(document).mousemove(function(e){ | |
mouseX = e.pageX; | |
mouseY = e.pageY; | |
traX = ((4 * mouseX) / 570) + 40; | |
traY = ((4 * mouseY) / 570) + 50; | |
console.log(traX); | |
$(".title").css({"background-position": traX + "%" + traY + "%"}); | |
}); | |
}); |
This file contains hidden or 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
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
This file contains hidden or 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
@mixin center(){ | |
-webkit-transform: translate(-50%,-50%); | |
-ms-transform: translate(-50%,-50%); | |
transform: translate(-50%,-50%); | |
left:50%; | |
top:50%; | |
} | |
@import url(https://fonts.googleapis.com/css?family=Raleway:400,,800,900); | |
html{ | |
width:100%; | |
height: 100%; | |
} | |
body{ | |
background: -webkit-linear-gradient(rgb(235, 236, 231), rgb(255, 255, 255)); | |
background: linear-gradient(rgb(235, 236, 231), rgb(255, 255, 255)); | |
margin: 0; | |
width: 100%; | |
height: 100%; | |
font-family: 'Raleway', sans-serif; | |
} | |
.container{ | |
position:absolute; | |
@include center(); | |
} | |
.title{ | |
font-weight: 800; | |
color: transparent; | |
font-size:120px; | |
background: url("https://phandroid.s3.amazonaws.com/wp-content/uploads/2014/05/rainbow-nebula.jpg") repeat; | |
background-position: 40% 50%; | |
-webkit-background-clip: text; | |
position:relative; | |
text-align:center; | |
line-height:90px; | |
letter-spacing: -8px; | |
} | |
.subtitle{ | |
display: block; | |
text-align: center; | |
text-transform: uppercase; | |
padding-top:10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment