File tree 3 files changed +77
-0
lines changed
docs/app/pages/Components/SpeedDial
src/components/MdSpeedDial
3 files changed +77
-0
lines changed Original file line number Diff line number Diff line change 1
1
<example src="./examples/PositionDirection.vue " />
2
2
<example src="./examples/AnimationTypes.vue " />
3
3
<example src="./examples/EventTriggers.vue " />
4
+ <example src="./examples/MorphingIcon.vue " />
4
5
5
6
<template >
6
7
<page-container centered :title =" $t('pages.speedDial.title')" >
14
15
<code-example title =" Positions and directions" :component =" examples['position-direction']" />
15
16
<code-example title =" Animations types" :component =" examples['animation-types']" />
16
17
<code-example title =" Event triggers" :component =" examples['event-triggers']" />
18
+ <code-example title =" Morphing Icons" :component =" examples['morphing-icon']" />
17
19
18
20
<api-item title =" API - md-speed-dial" >
19
21
<p >This component do not have any extra option.</p >
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div class =" example" >
3
+ <md-speed-dial class =" md-bottom-left" >
4
+ <md-speed-dial-target >
5
+ <md-icon class =" md-morph-initial" >add</md-icon >
6
+ <md-icon class =" md-morph-final" >edit</md-icon >
7
+ </md-speed-dial-target >
8
+
9
+ <md-speed-dial-content >
10
+ <md-button class =" md-icon-button" >
11
+ <md-icon >note</md-icon >
12
+ </md-button >
13
+
14
+ <md-button class =" md-icon-button" >
15
+ <md-icon >event</md-icon >
16
+ </md-button >
17
+ </md-speed-dial-content >
18
+ </md-speed-dial >
19
+
20
+ <md-speed-dial class =" md-top-left" md-direction =" bottom" md-event =" click" >
21
+ <md-speed-dial-target class =" md-primary" >
22
+ <md-icon class =" md-morph-initial" >add</md-icon >
23
+ <md-icon class =" md-morph-final" >close</md-icon >
24
+ </md-speed-dial-target >
25
+
26
+ <md-speed-dial-content >
27
+ <md-button class =" md-icon-button" >
28
+ <md-icon >directions</md-icon >
29
+ </md-button >
30
+
31
+ <md-button class =" md-icon-button" >
32
+ <md-icon >streetview</md-icon >
33
+ </md-button >
34
+ </md-speed-dial-content >
35
+ </md-speed-dial >
36
+ </div >
37
+ </template >
38
+
39
+ <script >
40
+ export default {
41
+ name: ' MorphingIcon'
42
+ }
43
+ </script >
44
+
45
+ <style lang="scss" scoped>
46
+ .example {
47
+ min-height : 300px ;
48
+ }
49
+ </style >
Original file line number Diff line number Diff line change @@ -161,6 +161,16 @@ export default new MdComponent({
161
161
162
162
& .md-active ,
163
163
& .md-with-hover :hover {
164
+ .md-morph-initial {
165
+ opacity : 0 ;
166
+ transform : translate3D (-50% , -50% , 0 ) rotate (90deg ) scale (.7 );
167
+ }
168
+
169
+ .md-morph-final {
170
+ opacity : 1 ;
171
+ transform : translate3D (-50% , -50% , 0 ) rotate (0deg ) scale (1 );
172
+ }
173
+
164
174
.md-speed-dial-content .md-button {
165
175
pointer-events : auto ;
166
176
opacity : 1 ;
@@ -187,5 +197,21 @@ export default new MdComponent({
187
197
transform 0s .3s $md-transition-default-timing ;
188
198
will-change : opacity , transform ;
189
199
}
200
+
201
+ .md-morph-initial ,
202
+ .md-morph-final {
203
+ position : absolute ;
204
+ top : 50% ;
205
+ left : 50% ;
206
+ transform : translate3D (-50% , -50% , 0 );
207
+ transition : .3s $md-transition-stand-timing ;
208
+ transition-property : opacity , transform ;
209
+ will-change : opacity , transform ;
210
+ }
211
+
212
+ .md-morph-final {
213
+ opacity : 0 ;
214
+ transform : translate3D (-50% , -50% , 0 ) scale (.7 ) rotate (-90deg );
215
+ }
190
216
}
191
217
</style >
You can’t perform that action at this time.
0 commit comments