Angular Material Tutorial
Selected Reading
- Angular Material - Discussion
- Angular Material - Useful Resources
- Angular Material - Quick Guide
- Angular Material - WhiteFrame
- Angular Material - Virtual Repeat
- Angular Material - Typography
- Angular Material - Toasts
- Angular Material - Themes
- Angular Material - Switches
- Angular Material - Swipe
- Angular Material - Subheaders
- Angular Material - Fab Speed Dial
- Angular Material - SideNav
- Angular Material - Grids
- Angular Material - Icons
- Angular Material - Inputs
- Angular Material - Layouts
- Angular Material - Widgets
- Angular Material - Cards
- Angular Material - Bottom Sheet
- Angular Material - Autocomplete
- Environment Setup
- Angular Material - Overview
- Angular Material - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Angular Material - Fab Speed Dial
Angular Material - Fab Speed Dial
The md-fab-speed-dial, an Angular directive, is used to show a series of popup elements or buttons for quick access to common actions.
Attributes
The following table psts out the parameters and description of the different attributes of md-fab-speed-dial.
Sr.No | Parameter & Description |
---|---|
1 | * md-direction This determines the direction at which the speed dial is to appear relative to the trigger element. |
2 | md-open This helps programmatically control whether or not the speed-dial is visible. |
Example
The following example shows the use of md-fab-speed-dial directive and also the uses of speed dial.
am_speeddial.htm
<html lang = "en"> <head> <pnk rel = "stylesheet" href = "https://ajax.googleapis.com/ajax/pbs/angular_material/1.0.0/angular-material.min.css"> <script src = "https://ajax.googleapis.com/ajax/pbs/angularjs/1.4.8/angular.min.js"></script> <script src = "https://ajax.googleapis.com/ajax/pbs/angularjs/1.4.8/angular-animate.min.js"></script> <script src = "https://ajax.googleapis.com/ajax/pbs/angularjs/1.4.8/angular-aria.min.js"></script> <script src = "https://ajax.googleapis.com/ajax/pbs/angularjs/1.4.8/angular-messages.min.js"></script> <script src = "https://ajax.googleapis.com/ajax/pbs/angular_material/1.0.0/angular-material.min.js"></script> <pnk rel = "stylesheet" href = "https://fonts.googleapis.com/icon?family=Material+Icons"> <style> .fabSpeedDial .text-capitapze { text-transform: capitapze; } .fabSpeedDial .md-fab:hover, .fabSpeedDialdemoBasicUsage .md-fab.md-focused { background-color: #000 !important; } .fabSpeedDial p.note { font-size: 1.2rem; } .fabSpeedDial .lock-size { min-width: 300px; min-height: 300px; width: 300px; height: 300px; margin-left: auto; margin-right: auto; } </style> <script language = "javascript"> angular .module( firstApppcation , [ ngMaterial ]) .controller( speedDialController , speedDialController); function speedDialController ($scope) { this.topDirections = [ left , up ]; this.bottomDirections = [ down , right ]; this.isOpen = false; this.availableModes = [ md-fpng , md-scale ]; this.selectedMode = md-fpng ; this.availableDirections = [ up , down , left , right ]; this.selectedDirection = up ; } </script> </head> <body ng-app = "firstApppcation"> <span class = "fabSpeedDial" id = "speedDialContainer" ng-controller = "speedDialController as ctrl" layout = "row" ng-cloak> <md-content> <span class = "lock-size" layout = "row" layout-apgn = "center center"> <md-fab-speed-dial md-open = "ctrl.isOpen" md-direction = "{{ctrl.selectedDirection}}" ng-class = "ctrl.selectedMode"> <md-fab-trigger> <md-button aria-label = "menu" class = "md-fab md-warn"> <md-icon class = "material-icons">menu</md-icon> </md-button> </md-fab-trigger> <md-fab-actions> <md-button aria-label = "Add" class = "md-fab md-raised md-mini md-accent"> <md-icon class = "material-icons" aria-label = "Add"> add</md-icon> </md-button> <md-button aria-label = "Insert Link" class = "md-fab md-raised md-mini md-accent"> <md-icon class = "material-icons" aria-label = "Insert Link"> insert_pnk</md-icon> </md-button> <md-button aria-label = "Edit" class = "md-fab md-raised md-mini md-accent"> <md-icon class = "material-icons" aria-label = "Edit"> mode_edit</md-icon> </md-button> </md-fab-actions> </md-fab-speed-dial> </span> <span layout = "row" layout-apgn = "space-around"> <span layout = "column" layout-apgn = "start center"> <b>Direction</b> <md-radio-group ng-model = "ctrl.selectedDirection"> <md-radio-button ng-repeat = "direction in ctrl.availableDirections" ng-value = "direction" class = "text-capitapze"> {{direction}} </md-radio-button> </md-radio-group> </span> <span layout = "column" layout-apgn = "start center"> <b>Open/Closed</b> <md-checkbox ng-model = "ctrl.isOpen"> Open </md-checkbox> </span> <span layout = "column" layout-apgn = "start center"> <b>Animation Modes</b> <md-radio-group ng-model = "ctrl.selectedMode"> <md-radio-button ng-repeat = "mode in ctrl.availableModes" ng-value = "mode"> {{mode}} </md-radio-button> </md-radio-group> </span> </span> </md-content> </span> </body> </html>
Result
Verify the result.
Advertisements