#### `actionmenu分享弹窗`
[预览](https://aui-js.github.io/aui/pages/api/plugs/actionmenu.html) </br>
参数 | 类型 | 描述 | 默认值 | 必选
---- | ----- | ------ | ----- | ----
warp | string | 父容器元素 | 'body' | 否
items | arr | 菜单列表[{name: "", icon: "", iconColor: "", img: ""}] | [] | 否
mask | boolean | 是否显示遮罩蒙版 | true | 否
touchClose | boolean | 触摸遮罩是否关闭模态弹窗 | true | 否
cancle | string | 取消按钮 | '' | 否
location | string | 位置 </br>bottom:位于底部,从底部弹出显示</br>middle:位于页面中心位置 | 'bottom' | 否
theme | number | 主题样式(1: 非全屏宽度; 2: 全屏宽度) | 1 | 否
````html
<link rel="stylesheet" type="text/css" href="https://aui-js.github.io/aui/static/css/aui.min.css"/>
<link rel="stylesheet" type="text/css" href="https://aui-js.github.io/aui/static/css/aui.actionmenu.css"/>
<script type="text/javascript" src="https://aui-js.github.io/aui/static/js/aui.min.js"></script>
<script type="text/javascript" src="https://aui-js.github.io/aui/static/js/aui.actionmenu.js"></script>
````
> 示例:
````javascript
aui.actionMenu({
title: '分享至',
mask: true,
touchClose: true,
items: [
{name: "微信", img: "../../img/weixin.png"},
{name: "朋友圈", img: "../../img/pengyouquan.png"},
{name: "QQ", img: "../../img/QQ.png"},
{name: "微博", img: "../../img/weibo.png"}
],
cancle: "取消",
theme: 1,
location: "bottom"
},function(ret){
console.log(ret.index);
});
````