2015-07-29 17:23:11 +08:00
|
|
|
# 组件动画
|
|
|
|
|
|
|
|
- category: 动画
|
2015-07-31 13:56:33 +08:00
|
|
|
- order: 2
|
2015-07-29 17:23:11 +08:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Ant Design 提供了一些预设的组件动画样式。
|
|
|
|
|
2016-03-30 11:33:41 +08:00
|
|
|
可以使用 [rc-animate](https://github.com/react-component/animate) 的 [transitionName](http://react-component.github.io/animate/examples/simple.html) 属性来给任意元素指定动画。
|
|
|
|
|
|
|
|
> 示例延长了动画时长以便展示。
|
2015-07-29 17:23:11 +08:00
|
|
|
|
2016-03-30 11:33:41 +08:00
|
|
|
<div id="components-motion-demo-basic"></div>
|
2015-07-29 17:23:11 +08:00
|
|
|
|
|
|
|
| 组件 | 中文名 | 采用动画 |
|
2016-03-30 11:33:41 +08:00
|
|
|
|--------------|--------------------|-------------------------------------------------|
|
|
|
|
| Popover | 气泡浮出 | `zoom-up` `zoom-down` `zoom-left` `zoom-right` |
|
|
|
|
| Popconfirm | 气泡确认 | `zoom-up` `zoom-down` `zoom-left` `zoom-right` |
|
|
|
|
| Tooltip | 文字提示 | `zoom-up` `zoom-down` `zoom-left` `zoom-right` |
|
|
|
|
| Modal | 弹出框 | `zoom` |
|
|
|
|
| Badge | 徽标数 | `zoom` |
|
2015-07-29 17:23:11 +08:00
|
|
|
| message | 信息提示条 | `move-up` |
|
2015-08-17 11:26:53 +08:00
|
|
|
| notification | 通知框 | `move-right` & `slide-up` |
|
2016-03-30 11:33:41 +08:00
|
|
|
| Dropdown | 下拉菜单 | `slide-up` |
|
|
|
|
| Select | 选择框 | `slide-up` |
|
|
|
|
| Cascader | 级联选择框 | `slide-up` |
|
|
|
|
| TreeSelect | 树选择框 | `slide-up` |
|
|
|
|
| DatePicker | 日期选择框 | `slide-up` |
|
|
|
|
| TatePicker | 日期选择框 | `slide-up` |
|
|
|
|
| Alert | 警告提示 | `slide-up` |
|
|
|
|
| Menu | 导航菜单 | `slide-up` |
|
2015-07-29 17:23:11 +08:00
|
|
|
|
|
|
|
|
|
|
|
`````jsx
|
|
|
|
var cssAnimation = require('css-animation');
|
2015-08-03 16:04:24 +08:00
|
|
|
var Select = antd.Select;
|
|
|
|
var Option = Select.Option;
|
|
|
|
var OptGroup = Select.OptGroup;
|
|
|
|
|
2015-07-29 17:23:11 +08:00
|
|
|
var motions = [];
|
|
|
|
motions = motions.concat([[{
|
|
|
|
name: '淡入',
|
|
|
|
value: 'fade',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '渐隐'
|
|
|
|
}, {
|
|
|
|
name: '淡出',
|
|
|
|
value: 'fade',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '渐隐'
|
|
|
|
}]]);
|
|
|
|
motions = motions.concat([[{
|
|
|
|
name: '中心放大',
|
|
|
|
value: 'zoom',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '缩放'
|
|
|
|
}, {
|
|
|
|
name: '中心缩小',
|
|
|
|
value: 'zoom',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '缩放'
|
|
|
|
}, {
|
|
|
|
name: '上方放大',
|
|
|
|
value: 'zoom-up',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '缩放'
|
|
|
|
}, {
|
|
|
|
name: '上方缩小',
|
|
|
|
value: 'zoom-up',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '缩放'
|
|
|
|
}, {
|
|
|
|
name: '下方放大',
|
|
|
|
value: 'zoom-down',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '缩放'
|
|
|
|
}, {
|
|
|
|
name: '下方缩小',
|
|
|
|
value: 'zoom-down',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '缩放'
|
|
|
|
}, {
|
|
|
|
name: '左方放大',
|
|
|
|
value: 'zoom-left',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '缩放'
|
|
|
|
}, {
|
|
|
|
name: '左方缩小',
|
|
|
|
value: 'zoom-left',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '缩放'
|
|
|
|
}, {
|
|
|
|
name: '右方放大',
|
|
|
|
value: 'zoom-right',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '缩放'
|
|
|
|
}, {
|
|
|
|
name: '右方缩小',
|
|
|
|
value: 'zoom-right',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '缩放'
|
|
|
|
}]]);
|
|
|
|
motions = motions.concat([[{
|
|
|
|
name: '上方滑入',
|
|
|
|
value: 'move-up',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '移动'
|
|
|
|
}, {
|
|
|
|
name: '上方滑出',
|
|
|
|
value: 'move-up',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '移动'
|
|
|
|
}, {
|
|
|
|
name: '下方滑入',
|
|
|
|
value: 'move-down',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '移动'
|
|
|
|
}, {
|
|
|
|
name: '下方滑出',
|
|
|
|
value: 'move-down',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '移动'
|
|
|
|
}, {
|
|
|
|
name: '左方滑入',
|
|
|
|
value: 'move-left',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '移动'
|
|
|
|
}, {
|
|
|
|
name: '左方滑出',
|
|
|
|
value: 'move-left',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '移动'
|
|
|
|
}, {
|
|
|
|
name: '右方滑入',
|
|
|
|
value: 'move-right',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '移动'
|
|
|
|
}, {
|
2016-01-11 21:26:59 +08:00
|
|
|
name: '右方滑出',
|
2015-07-29 17:23:11 +08:00
|
|
|
value: 'move-right',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '移动'
|
|
|
|
}]]);
|
|
|
|
motions = motions.concat([[{
|
|
|
|
name: '上方展开',
|
|
|
|
value: 'slide-up',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '伸缩'
|
|
|
|
}, {
|
|
|
|
name: '上方缩回',
|
|
|
|
value: 'slide-up',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '伸缩'
|
|
|
|
}, {
|
|
|
|
name: '下方展开',
|
|
|
|
value: 'slide-down',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '伸缩'
|
|
|
|
}, {
|
|
|
|
name: '下方缩回',
|
|
|
|
value: 'slide-down',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '伸缩'
|
|
|
|
}, {
|
|
|
|
name: '左方展开',
|
|
|
|
value: 'slide-left',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '伸缩'
|
|
|
|
}, {
|
|
|
|
name: '左方缩回',
|
|
|
|
value: 'slide-left',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '伸缩'
|
|
|
|
}, {
|
|
|
|
name: '右方展开',
|
|
|
|
value: 'slide-right',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '伸缩'
|
|
|
|
}, {
|
|
|
|
name: '右方缩回',
|
|
|
|
value: 'slide-right',
|
|
|
|
direction: 'leave',
|
|
|
|
type: '伸缩'
|
|
|
|
}]]);
|
|
|
|
motions = motions.concat([[{
|
|
|
|
name: '摇摆',
|
|
|
|
value: 'swing',
|
|
|
|
direction: 'enter',
|
|
|
|
type: '其他'
|
|
|
|
}]]);
|
2016-03-30 11:33:41 +08:00
|
|
|
var leave = '-leave';
|
2015-07-29 17:23:11 +08:00
|
|
|
var Test = React.createClass({
|
|
|
|
handleChange(e) {
|
2015-08-03 16:04:24 +08:00
|
|
|
var value = e;
|
2016-03-30 11:33:41 +08:00
|
|
|
if (value) {
|
|
|
|
this.demoNode.style.visibility = '';
|
2015-07-29 17:23:11 +08:00
|
|
|
cssAnimation(this.demoNode, value, () => {
|
2016-03-30 11:33:41 +08:00
|
|
|
if (value.slice(-leave.length) === leave) {
|
|
|
|
this.demoNode.style.visibility = 'hidden';
|
2015-07-29 17:23:11 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount() {
|
2015-10-21 17:59:57 +08:00
|
|
|
this.demoNode = ReactDOM.findDOMNode(this.refs.demo);
|
2015-07-29 17:23:11 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
render() {
|
2015-08-03 16:04:24 +08:00
|
|
|
var options = [<Option value="">请选择预设动画</Option>].concat(motions.map(function (m) {
|
2015-07-29 17:23:11 +08:00
|
|
|
var opts = m.map(function (m2) {
|
2015-08-03 16:04:24 +08:00
|
|
|
return <Option value={m2.value + "-" + m2.direction}>{m2.name + " " + m2.value}</Option>
|
2015-07-29 17:23:11 +08:00
|
|
|
});
|
2015-08-03 16:04:24 +08:00
|
|
|
return <OptGroup label={m[0].type}>{opts}</OptGroup>;
|
2015-07-29 17:23:11 +08:00
|
|
|
}));
|
|
|
|
return <div>
|
|
|
|
<div className="motion-container">
|
2015-07-31 13:56:33 +08:00
|
|
|
<div ref="demo" className="motion-example"></div>
|
2015-07-29 17:23:11 +08:00
|
|
|
</div>
|
2015-08-03 16:04:24 +08:00
|
|
|
<div className="motion-select-wrapper">
|
|
|
|
<Select value="" className='motion-select' onChange={this.handleChange}>{options}</Select>
|
2015-07-29 17:23:11 +08:00
|
|
|
</div>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-10-21 17:59:57 +08:00
|
|
|
ReactDOM.render(<Test/>, document.getElementById('components-motion-demo-basic'));
|
2015-07-29 17:23:11 +08:00
|
|
|
`````
|
|
|
|
|
|
|
|
<style>
|
2016-03-30 11:33:41 +08:00
|
|
|
#components-motion-demo-basic {
|
|
|
|
margin: 40px 0;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
2015-07-29 17:23:11 +08:00
|
|
|
.motion-container {
|
2015-07-31 13:56:33 +08:00
|
|
|
height: 190px;
|
|
|
|
line-height: 190px;
|
2015-07-29 17:23:11 +08:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.motion-example {
|
2015-07-31 13:56:33 +08:00
|
|
|
width: 180px;
|
|
|
|
height: 180px;
|
|
|
|
line-height: 180px;
|
2015-07-29 17:23:11 +08:00
|
|
|
font-size: 18px;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
display: inline-block !important;
|
|
|
|
border-radius: 8px;
|
|
|
|
font-weight: bold;
|
2016-03-30 11:33:41 +08:00
|
|
|
animation-duration: 0.5s!important;
|
2015-07-31 13:56:33 +08:00
|
|
|
background: url(https://t.alipayobjects.com/images/rmsweb/T1B9hfXcdvXXXXXXXX.svg) center/230px;
|
2015-07-29 17:23:11 +08:00
|
|
|
}
|
2015-08-03 16:04:24 +08:00
|
|
|
.motion-select-wrapper{
|
2015-07-29 17:23:11 +08:00
|
|
|
text-align: center;
|
|
|
|
}
|
2015-08-03 16:04:24 +08:00
|
|
|
.motion-select {
|
|
|
|
text-align:left;
|
|
|
|
width:180px;
|
|
|
|
}
|
2015-07-29 17:23:11 +08:00
|
|
|
</style>
|