Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Create mobile sidebar/sidenav experiance in Angular

NotificationsYou must be signed in to change notification settings

SidebarJS/ng-sidebarjs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub releasenpm

ng-sidebarjs

Create mobile sidebar/sidenav experiance in Angular.

Are you looking for a version with AngularJS? Tryangular-sidebarjs

npm install ng-sidebarjs --save

Demo

Open the demo on your device and try the touch gestures!

Options

<sidebarjs-element  // Optional | Required only for multiple sidebarjs  [sidebarjsName]="'myCustomName'"    // Optional  [sidebarjsConfig]="{    // Check https://github.com/SidebarJS/sidebarjs#options for all available options  }"    // Optional | Function called after sidebar is open  (open)="onOpenSidebar()"    // Optional | Function called after sidebar is close  (close)="onCloseSidebar()"    // Optional | Function called when sidebar change visibility  (changeVisibility)="onChangeVisibility($event)"></sidebarjs-element>

Implementation

Import Module

import{BrowserModule}from'@angular/platform-browser';import{NgModule}from'@angular/core';import{AppComponent}from'./app.component';import{SidebarjsModule}from'ng-sidebarjs';@NgModule({declarations:[AppComponent],imports:[BrowserModule,SidebarjsModule.forRoot()],bootstrap:[AppComponent]})exportclassAppModule{}

Createsidebarjs-element

Writesidebarjs-element tag and a trigger element with just[sidebarjsToggle|sidebarjsOpen|sidebarjsClose] attribute.

<divsidebarjsOpen>Open Sidebar!</div><sidebarjs-element>  Hello!</sidebarjs-element>

Migrate from <=4.0.0 to >=6.0.0

Naming convention become consistent: everything that was SidebarJSName, now is SidebarjsName.

<=4.0.0>=6.0.0
SidebarJSModuleSidebarjsModule
SidebarJSServiceSidebarjsService
<sidebar-js><sidebarjs-element>
[sidebarjsOpen][sidebarjsOpen]
[sidebarjsClose][sidebarjsClose]
[sidebarjsToggle][sidebarjsToggle]

[8]ページ先頭

©2009-2025 Movatter.jp