
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@greg-md/ng-elevator
Advanced tools
Make a container to elevate on the screen while scrolling with Angular.
Make a container to elevate on the screen while scrolling with Angular.
npm install @greg-md/greg-elevator --save
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
// 1. Import elevator module;
import { ElevatorModule } from '@greg-md/greg-elevator';
import { AppComponent } from './app.component';
@NgModule({
imports: [
BrowserModule,
// 2. Register elevator module.
ElevatorModule,
],
declarations: [
AppComponent,
],
bootstrap: [AppComponent]
})
export class AppModule { }
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
styles: `
.sidebar {
width: 200px;
height: 500px;
}
`,
template: `
<section class="sidebar">
<greg-elevator>
You will see me while scrolling.
</greg-elevator>
</section>
`,
})
export class AppComponent { }
Elevator by default is fixed on the top of the screen while scrolling up. You could set a margin top for the elevator.
Example:
<greg-elevator [marginTop]="20">
Hello! I am elevating.
</greg-elevator>
If the elevator height is bigger than the screen height, elevator by default is fixed on the bottom of the screen while scrolling down. You could set a margin bottom for the elevator.
Example:
<greg-elevator [marginBottom]="20">
Hello! I am elevating.
</greg-elevator>
MIT © Grigorii Duca

FAQs
Make a container to elevate on the screen while scrolling with Angular.
We found that @greg-md/ng-elevator 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.