
Security News
VulnCon 2025: NVD Scraps Industry Consortium Plan, Raising Questions About Reform
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
react-tag-sphere
Advanced tools
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Make Animated rotating tag spheres with this library instantly. All credits to jjsanmartino03 for providing this example
import React from "react";
import { TagSphere } from "react-tag-sphere";
export default function App() {
return <TagSphere />;
}
This will disable blur effect on tags as it goes behind. In this example we also see how to change the styles on the font;
import React from "react";
import { TagSphere } from "react-tag-sphere";
export default function App() {
return (
<TagSphere
style={{
color: "green",
fontWeight: "bold",
fontSize: "1.2rem",
fontFamily: "monospace",
}}
blur={false}
/>
);
}
const tags = [
<img
width={50}
src={"https://cdn.svgporn.com/logos/react.svg"}
alt={"Random image"}
/>,
<img
width={50}
src={"https://cdn.svgporn.com/logos/javascript.svg"}
alt={"Random image"}
/>,
]
import React from "react";
import { TagSphere } from "react-tag-sphere";
export default function App() {
return (
<TagSphere
tags={tags}
/>
);
}
Property | Type | Default |
---|---|---|
tags | (string | ReactNode)[] | Example given in demo on top |
radius | number | text.length * 0.25 |
maxSpeed | number | 7 |
initialSpeed | number | 32 |
initialDirection | number | 135 (degrees) |
keepRollingAfterMouseOut | boolean | true |
fullWidth | boolean | false |
fullHeight | boolean | false |
userSelect | boolean | false |
blur | boolean | true |
blurMultiplier | number | 1 |
grayscale | boolean | true |
FAQs
Simple React Tag Sphere component with blur effect
The npm package react-tag-sphere receives a total of 2 weekly downloads. As such, react-tag-sphere popularity was classified as not popular.
We found that react-tag-sphere 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
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.
Product
Our redesigned Repositories page adds alert severity, filtering, and tabs for faster triage and clearer insights across all your projects.