Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 2.07 KB

File metadata and controls

40 lines (29 loc) · 2.07 KB

Simple Material Design FAB Speed Dial

Angular 2 FAB Speed Dial based on AngularJS FAB Speed Dial

Usage

<smd-fab-speed-dial [(open)]="open" [direction]="direction" [animationMode]="animationMode" [fixed]="fixed">
    <smd-fab-trigger>
        <button md-fab (click)="actionX()"><md-icon>check</md-icon></button>
    </smd-fab-trigger>

    <smd-fab-actions>
        <button md-mini-fab (click)="action1()"><md-icon>add</md-icon></button>
        <button md-mini-fab (click)="action2()"><md-icon>edit</md-icon></button>
        <button md-mini-fab (click)="action3()"><md-icon>menu</md-icon></button>
    </smd-fab-actions>
</smd-fab-speed-dial>

Properties

smd-fab-speed-dial

Property Type Default Description
open boolean false Indicates if this FAB Speed Dial is opened
direction up, down, left or right up The direction to open the action buttons
animationMode fling or scale fling The animation to apply when opening the action buttons
fixed boolean false Indicates if this FAB Speed Dial is fixed (user cannot change the open state on click)

smd-fab-trigger

Property Type Default Description
spin boolean false Enables the rotation (360dg) of the trigger action when the speed dial is opening

TODO List

  • Change color of the fab buttons on hover/selection
  • Make the trigger button change icon when the user open the speed dial (configurable)
  • Let the speed dial open a "sheet" of material instead of just mini-fab action buttons