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.
@omnedia/ngx-gradient-text
Advanced tools
@omnedia/ngx-gradient-text
is an Angular library that provides a dynamic gradient animation effect for text. This component allows you to display text with a smooth, animated gradient that transitions between two customizable colors.
Install the library using npm:
npm install @omnedia/ngx-gradient-text
Import the NgxGradientTextComponent
in your Angular module or component:
import { NgxGradientTextComponent } from '@omnedia/ngx-gradient-text';
@Component({
...
imports: [
...
NgxGradientTextComponent,
],
...
})
Use the component in your template:
<om-gradient-text
[text]="'Gradient Text Effect!'"
[gradientStart]="'#ff7f50'"
[gradientEnd]="'#6495ed'"
styleClass="custom-gradient-text"
></om-gradient-text>
<om-gradient-text
[text]="text"
[gradientStart]="gradientStart"
[gradientEnd]="gradientEnd"
styleClass="your-custom-class"
></om-gradient-text>
text
(required): The text content to be displayed with the gradient effect.gradientStart
(optional): The starting color of the gradient. Accepts any valid CSS color value.gradientEnd
(optional): The ending color of the gradient. Accepts any valid CSS color value.styleClass
(optional): A custom CSS class to apply to the gradient text element.<om-gradient-text
[text]="'Hello World!'"
[gradientStart]="'#ff69b4'"
[gradientEnd]="'#8a2be2'"
styleClass="gradient-text-style"
></om-gradient-text>
This will create an animated gradient text effect where the text "Hello World!" smoothly transitions between pink and blue-violet.
To customize the appearance of the gradient text, use the styleClass input to apply your own CSS classes.
.gradient-text-style {
font-size: 48px;
font-weight: bold;
font-family: 'Verdana', sans-serif;
}
This will style the gradient text with a custom font size, weight, and font family.
Contributions are welcome. Please submit a pull request or open an issue to discuss your ideas.
This project is licensed under the MIT License.
FAQs
A simple component library to animate text.
The npm package @omnedia/ngx-gradient-text receives a total of 6 weekly downloads. As such, @omnedia/ngx-gradient-text popularity was classified as not popular.
We found that @omnedia/ngx-gradient-text demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.