Created
July 10, 2017 13:51
-
-
Save Rudis1261/8bda35ca65bb5d5ab14d692fa2689923 to your computer and use it in GitHub Desktop.
Angular JS CSS Filters
This file contains hidden or 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
.filter('darken', function() { | |
return function(hex, percentile) { | |
if (!hex) return ''; | |
if (hex.indexOf('#') !== 0) { | |
return hex; | |
} | |
hex = hex.replace('#',''); | |
var amount = 0; | |
r = parseInt(hex.substring(0,2), 16); | |
g = parseInt(hex.substring(2,4), 16); | |
b = parseInt(hex.substring(4,6), 16); | |
percentile = (percentile ? percentile : 0); | |
if (percentile > 0) { | |
amount = Math.ceil(percentile * 2.5); | |
} | |
r = r - amount; | |
g = g - amount; | |
b = b - amount; | |
if (r < 0) r = 0; | |
if (g < 0) g = 0; | |
if (b < 0) b = 0; | |
result = 'rgb('+r+','+g+','+b+')'; | |
return result; | |
}; | |
}) |
This file contains hidden or 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
.filter('rgba', function() { | |
return function(hex, opacity) { | |
if (!hex) return ''; | |
if (hex.indexOf('#') !== 0) { | |
return hex; | |
} | |
hex = hex.replace('#',''); | |
opacity = (opacity ? opacity : 1.0); | |
r = parseInt(hex.substring(0,2), 16); | |
g = parseInt(hex.substring(2,4), 16); | |
b = parseInt(hex.substring(4,6), 16); | |
result = 'rgba('+r+','+g+','+b+',' + opacity + ')'; | |
return result; | |
}; | |
}) |
This file contains hidden or 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
.filter('lighten', function() { | |
return function(hex, percentile) { | |
if (!hex) return ''; | |
if (hex.indexOf('#') !== 0) { | |
return hex; | |
} | |
hex = hex.replace('#',''); | |
var amount = 0; | |
r = parseInt(hex.substring(0,2), 16); | |
g = parseInt(hex.substring(2,4), 16); | |
b = parseInt(hex.substring(4,6), 16); | |
percentile = (percentile ? percentile : 0); | |
if (percentile > 0) { | |
amount = Math.ceil(percentile * 2.5); | |
} | |
r = r + amount; | |
g = g + amount; | |
b = b + amount; | |
if (r > 255) r = 255; | |
if (g > 255) g = 255; | |
if (b > 255) b = 255; | |
result = 'rgb('+r+','+g+','+b+')'; | |
return result; | |
}; | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment