Skip to content

Commit 2f55de5

Browse files
committed
feat(MdSpeedDial): create morph icon
1 parent bf8c5f4 commit 2f55de5

File tree

3 files changed

+77
-0
lines changed

3 files changed

+77
-0
lines changed

docs/app/pages/Components/SpeedDial/SpeedDial.vue

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<example src="./examples/PositionDirection.vue" />
22
<example src="./examples/AnimationTypes.vue" />
33
<example src="./examples/EventTriggers.vue" />
4+
<example src="./examples/MorphingIcon.vue" />
45

56
<template>
67
<page-container centered :title="$t('pages.speedDial.title')">
@@ -14,6 +15,7 @@
1415
<code-example title="Positions and directions" :component="examples['position-direction']" />
1516
<code-example title="Animations types" :component="examples['animation-types']" />
1617
<code-example title="Event triggers" :component="examples['event-triggers']" />
18+
<code-example title="Morphing Icons" :component="examples['morphing-icon']" />
1719

1820
<api-item title="API - md-speed-dial">
1921
<p>This component do not have any extra option.</p>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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>

src/components/MdSpeedDial/MdSpeedDial.vue

+26
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,16 @@ export default new MdComponent({
161161
162162
&.md-active,
163163
&.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+
164174
.md-speed-dial-content .md-button {
165175
pointer-events: auto;
166176
opacity: 1;
@@ -187,5 +197,21 @@ export default new MdComponent({
187197
transform 0s .3s $md-transition-default-timing;
188198
will-change: opacity, transform;
189199
}
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+
}
190216
}
191217
</style>

0 commit comments

Comments
 (0)