
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
rfx-scroll-animation
Advanced tools
Animate your page elements on scroll
will-change
Install the npm package:
npm install rfx-scroll-animation
import { RfxScrollAnimationModule } from 'rfx-scroll-animation';
@NgModule({
imports: [
RfxScrollAnimationModule
]
})
In your app.component.ts initialize animation listeners inside ngAfterViewInit
WARNING: *use ngAfterViewInit
instead of ngOnInit
otherwise you may experience glitches on page loading
import { RfxScrollAnimationService } from 'rfx-scroll-animation';
constructor(private rfxScrollAnimationService: RfxScrollAnimationService) { }
public ngAfterViewInit(): void {
this.rfxScrollAnimationService.initListeners();
}
and if you have a custom scrollbar component you can pass the nativeElement
to the initListeners() function like this:
WARNING: *use ngAfterViewInit
instead of ngOnInit
otherwise you may experience glitches on page loading
<custom-scrollbar #scrollbar>
<!-- Your page here -->
</custom-scrollbar>
@ViewChild('scrollbar')
public scrollbarElement: ElementRef;
public ngAfterViewInit(): void {
this.rfxParallaxService.initListeners(this.scrollbarElement.nativeElement);
}
just apply libRfxScrollAnimation
to your container and set animation type
<div libRfxScrollAnimation animationType="bottom">
[...]
</div>
distanceFromPageBottomPercentage: number
(default value: 20)
when element should appear - in percentage from the bottom of the page (e.g. 20 = 20% of current viewport from the bottom)
animationType: AnimationTypeEnum
(default value: 'none')
Available animation types:
none
- use this if you want to implement a custom animationtop
- fade in from topbottom
- fade in from bottomright
- fade in from rightleft
- fade in from leftzoom
- zoom in / outanimationDistancePx: number
(default value: 25)
from how far the animation should fade in - shift value
transitionDurationMs: number
(default value: 500)
animation duration in milliseconds
transitionDelayMs: number
(default value: 0)
animation delay in milliseconds
transitionTimingFunction: string
(default value: 'cubic-bezier(0.4, 0.0, 0.2, 1)')
transition timing function (for more info see https://www.w3schools.com/cssref/css3_pr_transition-timing-function.asp)
scaleRatio: number
(default value: 1.5)
ONLY FOR 'zoom' ANIMATION TYPE!
scale value (eg. scale from value
to 1)
isOnlyFirstTime: boolean
(default value: true)
animate only on first scroll (true) or always (false)
elementVisibleChange: EventEmitter<boolean>
listen to show / hide element events and create your own custom animation
<div libRfxScrollAnimation animationType="bottom" (elementVisibleChange)="myCustomFunction($event)">
[...]
</div>
You can view all available demos here:
https://demo.redfoxxo.dev/
This project is licensed under the MIT License
FAQs
Animate your page elements on scroll
The npm package rfx-scroll-animation receives a total of 0 weekly downloads. As such, rfx-scroll-animation popularity was classified as not popular.
We found that rfx-scroll-animation 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.