Skip to content

Instantly share code, notes, and snippets.

View hackistic's full-sized avatar

DustinF hackistic

View GitHub Profile
@hackistic
hackistic / index.html
Created December 3, 2019 07:50
Text-mask background moving on MouseMove - v2
<!-- 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>
@hackistic
hackistic / index.html
Created April 3, 2020 04:50
Scramble text animation js
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="“#000000”">
</>
<div class="container">
@hackistic
hackistic / index.html
Created December 5, 2021 02:30
Interactive particles text create with three.js
<script type="x-shader/x-vertex" id="vertexshader">
attribute float size;
attribute vec3 customColor;
varying vec3 vColor;
void main() {
vColor = customColor;
vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );