Skip to content

Instantly share code, notes, and snippets.

View ashleedawg's full-sized avatar
🎯
Busy.

ashleedawg ashleedawg

🎯
Busy.
View GitHub Profile
@brandonheyer
brandonheyer / rgbToHSL.php
Last active June 12, 2021 06:49
PHP snippet to convert RGB to HSL and HSL to RGB.
<?
function rgbToHsl( $r, $g, $b ) {
$oldR = $r;
$oldG = $g;
$oldB = $b;
$r /= 255;
$g /= 255;
$b /= 255;
@shashisp
shashisp / gist:8703545
Created January 30, 2014 06:19
textcarousel example
<div id="container">
This is the
<div id="caption">
<span>best</span>
<span>ultimate</span>
<span>excellent</span>
<span>fantastic</span>
</div>
website in town.
</div>