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
// Processing code by Etienne JACOB | |
// motion blur template by beesandbombs | |
// opensimplexnoise code in another tab might be necessary | |
// --> code here : https://gist.github.com/Bleuje/fce86ef35b66c4a2b6a469b27163591e | |
int[][] result; | |
float t, c; | |
float ease(float p) { |
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
<script type="text/javascript"> // <![CDATA[ | |
if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1)) { | |
document.location = "vx_iphone_experience"; | |
} // ]]> | |
if ((navigator.userAgent.indexOf('iPad') != -1)) { | |
document.location = "vx_ipad_experience"; | |
} // ]]> | |
if ( (navigator.userAgent.indexOf('Android') != -1) ) { | |
document.location = "vx_iphone_experience"; | |
} // ]]> |