Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
blurhash-gradients
Advanced tools
Draw blurhashes using CSS gradients.
Blurhash's main drawback is that it absolutely requires some client side JS. It cannot be server rendered.
Install the package using npm or yarn.
npm install blurhash-gradients
Then simply call the blurhashAsGradients
function with the blurhash and use the resulting CSS object on a placeholder element behind your image.
import { blurhashAsGradients } from 'blurhash-gradients';
const css = blurhashAsGradients('LEHV6nWB2yk8pyo0adR*.7kCMdnj');
/*
{
backgroundImage: string;
backgroundSize: string;
backgroundPosition: string;
backgroundRepeat: string;
boxShadow: string;
filter: string;
clipPath: string;
}
*/
<div style="position: relative">
<div style="position: absolute; inset: 0px; z-index: -1; [THE CSS GRADIENT OUTPUT HERE]">
<img src="./big_image.png" width="1920" height="1080"/> <!-- Make sure to include size -->
</div>
You can also optionally pass in an options object as the second argument. Here are the defaults:
import { blurhashAsGradients } from 'blurhash-gradients';
const css = blurhashAsGradients('LEHV6nWB2yk8pyo0adR*.7kCMdnj', {
width: 8, //The horizontal resolution of the gradients
height: 8, //The vertical resolution of the gradients
blur: 20, //The amount of blur to apply to the gradients (in pixels). Increase this on large display sizes.
});
FAQs
Draw blurhashes using CSS gradients.
The npm package blurhash-gradients receives a total of 70 weekly downloads. As such, blurhash-gradients popularity was classified as not popular.
We found that blurhash-gradients demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.