Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
button-animations
Advanced tools
Button animation, typically refers to the visual effects applied to a button element on a website or application to make it more interactive and engaging for users.
demo export default function buttonAnimations ({ href = "/", title = "Trun on", data_back = "Trun on", data_front = "Trun off" }) { return ( ); };
css .btn-flip { opacity: 1; outline: 0; font-family: cursive; color: #fff; line-height: 48px; position: relative; text-align: center; letter-spacing: 1px; display: inline-block; text-decoration: none; text-transform: uppercase; font-size: 16px; content: attr(data-back);
&:hover {
&:after {
opacity: 1;
transform: translateY(0) rotateX(0);
}
&:before {
opacity: 0;
transform: translateY(50%) rotateX(90deg);
}
}
&:after { top: 0; left: 0; opacity: 0; width: 100%; border-radius: 6px; color: white; display: block; transition: 0.5s; position: absolute; background: #1e8cff; box-shadow: -2px 2px 6px rgba(30, 140, 255, 0.4); content: attr(data-back); transform: translateY(-50%) rotateX(90deg); }
&:before { top: 0; left: 0; opacity: 1; color: white; display: block; padding: 0 30px; line-height: 48px; border-radius: 6px; transition: 0.5s; position: relative; background: #1e8cff; border: 1px solid #1e8cff; content: attr(data-front); transform: translateY(0) rotateX(0); }
.back { overflow: hidden; height: 0px; } }
FAQs
Button animation, typically refers to the visual effects applied to a button element on a website or application to make it more interactive and engaging for users.
The npm package button-animations receives a total of 1 weekly downloads. As such, button-animations popularity was classified as not popular.
We found that button-animations 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.