Edit: 2020. Jun 25.
As seen on LinkedIn by a member: uxdesignmaster
| import {spring, useCurrentFrame, interpolate, Easing, useVideoConfig} from 'remotion'; | |
| /* | |
| Pass params into component like this: | |
| <TitleThree titleText={`But I watch | |
| and learn from them. | |
| I like the little they know, | |
| which is so much.`} titleColor="white" backgroundColor="black" fontSize={60} fontFamily="Lora" /> | |
| */ |
Edit: 2020. Jun 25.
As seen on LinkedIn by a member: uxdesignmaster
| // by Etienne JACOB | |
| // motion blur template by beesandbombs | |
| // needs opensimplexnoise code in another tab | |
| // --> code here : https://gist.github.com/Bleuje/fce86ef35b66c4a2b6a469b27163591e | |
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; |
If you're developing an application based on React it can be helpful if you don't need to develop all the basic UI components yourself. Here you can find a list with various components, component libraries and complete design systems developed with and for React.
As the list got longer and longer I thought it would be better to have a "real" site for it.
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
Please consider using http://lygia.xyz instead of copy/pasting this functions. It expand suport for voronoi, voronoise, fbm, noise, worley, noise, derivatives and much more, through simple file dependencies. Take a look to https://github.com/patriciogonzalezvivo/lygia/tree/main/generative
float rand(float n){return fract(sin(n) * 43758.5453123);}
float noise(float p){
float fl = floor(p);
float fc = fract(p);