Inspired by 'Search' Concept by Oleg Frolov. Would love to make this snappier with the motion though. http://www.uplabs.com/posts/search-interface-inspiration
A Pen by Felice DeNigris on CodePen.
| <script src="https://use.fontawesome.com/0193bddf58.js"></script> | |
| <div class="header"> | |
| <h1> Hi my name is Felice DeNigris</h1> | |
| <h1>I'm a multi disciplinary designer & web developer</h1> | |
| </div> | |
| <!-- <div class="follow">Follow Me</div> --> | |
| <div class="outlets"> | |
| <a class="fa fa-dribbble" href=""></a> | |
| <a class="fa fa-flickr" href=""></a> |
Inspired by 'Search' Concept by Oleg Frolov. Would love to make this snappier with the motion though. http://www.uplabs.com/posts/search-interface-inspiration
A Pen by Felice DeNigris on CodePen.
| ! [rejected] master -> master (non-fast-forward) |
| // convert 0..255 R,G,B values to binary string | |
| RGBToBin = function(r,g,b){ | |
| var bin = r << 16 | g << 8 | b; | |
| return (function(h){ | |
| return new Array(25-h.length).join("0")+h | |
| })(bin.toString(2)) | |
| } | |
| // convert 0..255 R,G,B values to a hexidecimal color string | |
| RGBToHex = function(r,g,b){ |