如何创建 Material Design 径向反应动画
Posted
技术标签:
【中文标题】如何创建 Material Design 径向反应动画【英文标题】:How to create a Material Design Radial reaction animation 【发布时间】:2017-04-05 04:20:29 【问题描述】:我希望我的工具栏使用材料设计径向反应编排指南更改颜色
我想将其实现为 angular 2 过渡,但我不知道该怎么做:
它看起来像这样..
@Component(
...
animations: [
trigger('heroState', [
state('inactive', style(
backgroundColor: '#eee',
transform: 'scale(1)'
)),
state('active', style(
backgroundColor: '#cfd8dc',
transform: 'scale(1.1)'
)),
transition('inactive => active', animate('100ms ease-in')),
transition('active => inactive', animate('100ms ease-out'))
])
]
)
【问题讨论】:
【参考方案1】:更新:Updated PLUNKER、animation
使用 box-shadow
@Component(
selector: 'my-app',
template: `
<div class="head" [@mtSlide]="activeSlide == 1 ? 'active': 'inactive'">
<input id="searchBar" type="search" [@mtTranslate]="activeSlide == 2 ? 'active': 'inactive'">
<i class="fa fa-bars" [@mtRotate]="activeSlide == 1 ? 'active': 'inactive'" (click)="menuOpen()" [style.z-index]="activeSlide == 1 ? 1 : 0"></i>
<i class="fa fa-arrow-left" [@mtRotate]="activeSlide == 2 ? 'active': 'inactive'" (click)="activeSlide = 1" [style.z-index]="activeSlide == 2 ? 1 : 0"></i>
<i class="fa fa-search" [@mtScale]="activeSlide == 1 ? 'active': 'inactive'" style="right:10px; left: initial;" (click)="activeSlide = 2"></i>
</div>
`,
animations: [
trigger('mtSlide', [
state('inactive', style(
'box-shadow': 'rgb(0, 102, 255) 0px 0px 0px 0px inset, rgb(0, 0, 0) 0px 2px 8px -3px'
)),
state('active', style(
'box-shadow': 'rgb(0, 102, 255) 100vw 0px 0px 0px inset, rgb(0, 0, 0) 0px 2px 8px -3px'
)),
transition('inactive <=> active', animate('200ms ease-out'))
]),
trigger('mtTranslate', [
state('inactive', style(
transform: 'translateX(100%)'
)),
state('active', style(
transform: 'translateX(0)'
)),
transition('inactive <=> active', animate('200ms ease-out'))
]),
trigger('mtRotate', [
state('inactive', style(
transform: 'rotateZ(-90deg)'
opacity: 0;
)),
state('active', style(
transform: 'rotateZ(0)';
opacity: 1;
)),
transition('inactive <=> active', animate('300ms ease-out'))
]),
trigger('mtScale', [
state('inactive', style(
transform: 'scale(0)'
)),
state('active', style(
transform: 'scale(1)';
)),
transition('inactive <=> active', animate('400ms ease-out'))
])],
styles: [`
*
box-sizing: border-box;
.head
position: relative;
font-size: 18px;
.head, .color-bar, .head > input
width: 100%;
height: 50px;
.head i, .head > input
position: absolute;
.head i
line-height: 50px;
cursor: pointer;
color: white;
padding: 0 10px;
width: 50px;
text-align: center;
left: 10px;
.head i.fa-arrow-left
color: #111;
.head > input
border: 0;
outline: 0;
padding-left: 50px;
`]
)
export class App
activeSlide = 1;
menuOpen()
alert('Menu Clicked');
【讨论】:
非常棒的工作,但实际上我想只保留 1 个 div 并更改它的颜色而不是用另一个 div 替换它。使用 css 转换甚至可能吗? 是的,可以使用box-shadow: inset
,您可以直接将其应用于.head div
,然后只需调整shadow area
即可创建该效果
您能否更新或更好地补充您的答案,以便我可以尝试并接受它?
THERE 你去,只有一个 div
更新效果更好,take a look【参考方案2】:
您也许可以使用 CSS,尤其是伪元素来模仿这种设计。它不使用任何 JS,但如果您要添加多种颜色/等,可能需要它。
.menu
height: 50px;
width: 100%;
background: lightgray;
position: fixed;
top: 0;
left: 0;
overflow: hidden;
.menu .button1
position: absolute;
top: 20%;
left: 10px;
height: 30px;
width: 30px;
background: tomato;
cursor: pointer;
.menu .button1:before
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
background: tomato;
transition: all 1s;
height: 0;
width: 0;
cursor: initial;
.menu .button1:hover:before
height: 300vw;
width: 300vw;
<div class="menu">
<div class="button1"></div>
</div>
【讨论】:
以上是关于如何创建 Material Design 径向反应动画的主要内容,如果未能解决你的问题,请参考以下文章
Material Design Components React 风格按钮
使用 Material Design 编辑模式时如何选择选项
使用Material Design 创建App翻译系列----材料主题的使用(Using Material Theme)