uni-fab.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. <template>
  2. <view>
  3. <view v-if="popMenu && (leftBottom||rightBottom||leftTop||rightTop)" :class="{
  4. 'uni-fab--leftBottom': leftBottom,
  5. 'uni-fab--rightBottom': rightBottom,
  6. 'uni-fab--leftTop': leftTop,
  7. 'uni-fab--rightTop': rightTop
  8. }"
  9. class="uni-fab">
  10. <view :class="{
  11. 'uni-fab__content--left': horizontal === 'left',
  12. 'uni-fab__content--right': horizontal === 'right',
  13. 'uni-fab__content--flexDirection': direction === 'vertical',
  14. 'uni-fab__content--flexDirectionStart': flexDirectionStart,
  15. 'uni-fab__content--flexDirectionEnd': flexDirectionEnd,
  16. 'uni-fab__content--other-platform': !isAndroidNvue
  17. }"
  18. :style="{ width: boxWidth, height: boxHeight, backgroundColor: styles.backgroundColor }" class="uni-fab__content"
  19. elevation="5">
  20. <view v-if="flexDirectionStart || horizontalLeft" class="uni-fab__item uni-fab__item--first" />
  21. <view v-for="(item, index) in content" :key="index" :class="{ 'uni-fab__item--active': isShow }" class="uni-fab__item"
  22. @click="_onItemClick(index, item)">
  23. <image :src="item.active ? item.selectedIconPath : item.iconPath" class="uni-fab__item-image" mode="widthFix" />
  24. <text class="uni-fab__item-text" :style="{ color: item.active ? styles.selectedColor : styles.color }">{{ item.text }}</text>
  25. </view>
  26. <view v-if="flexDirectionEnd || horizontalRight" class="uni-fab__item uni-fab__item--first" />
  27. </view>
  28. </view>
  29. <view :class="{
  30. 'uni-fab__circle--leftBottom': leftBottom,
  31. 'uni-fab__circle--rightBottom': rightBottom,
  32. 'uni-fab__circle--leftTop': leftTop,
  33. 'uni-fab__circle--rightTop': rightTop,
  34. 'uni-fab__content--other-platform': !isAndroidNvue
  35. }"
  36. class="uni-fab__circle uni-fab__plus" :style="{ 'background-color': styles.buttonColor }" @click="_onClick">
  37. <view class="fab-circle-v" :class="{'uni-fab__plus--active': isShow}"></view>
  38. <view class="fab-circle-h" :class="{'uni-fab__plus--active': isShow}"></view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. let platform = 'other'
  44. // #ifdef APP-NVUE
  45. platform = uni.getSystemInfoSync().platform
  46. // #endif
  47. /**
  48. * Fab 悬浮按钮
  49. * @description 点击可展开一个图形按钮菜单
  50. * @tutorial https://ext.dcloud.net.cn/plugin?id=144
  51. * @property {Object} pattern 可选样式配置项
  52. * @property {Object} horizontal = [left | right] 水平对齐方式
  53. * @value left 左对齐
  54. * @value right 右对齐
  55. * @property {Object} vertical = [bottom | top] 垂直对齐方式
  56. * @value bottom 下对齐
  57. * @value top 上对齐
  58. * @property {Object} direction = [horizontal | vertical] 展开菜单显示方式
  59. * @value horizontal 水平显示
  60. * @value vertical 垂直显示
  61. * @property {Array} content 展开菜单内容配置项
  62. * @property {Boolean} popMenu 是否使用弹出菜单
  63. * @event {Function} trigger 展开菜单点击事件,返回点击信息
  64. * @event {Function} fabClick 悬浮按钮点击事件
  65. */
  66. export default {
  67. name: 'UniFab',
  68. props: {
  69. pattern: {
  70. type: Object,
  71. default () {
  72. return {}
  73. }
  74. },
  75. horizontal: {
  76. type: String,
  77. default: 'left'
  78. },
  79. vertical: {
  80. type: String,
  81. default: 'bottom'
  82. },
  83. direction: {
  84. type: String,
  85. default: 'horizontal'
  86. },
  87. content: {
  88. type: Array,
  89. default () {
  90. return []
  91. }
  92. },
  93. show: {
  94. type: Boolean,
  95. default: false
  96. },
  97. popMenu: {
  98. type: Boolean,
  99. default: true
  100. }
  101. },
  102. data() {
  103. return {
  104. fabShow: false,
  105. isShow: false,
  106. isAndroidNvue: platform === 'android',
  107. styles: {
  108. color: '#3c3e49',
  109. selectedColor: '#007AFF',
  110. backgroundColor: '#fff',
  111. buttonColor: '#3c3e49'
  112. }
  113. }
  114. },
  115. computed: {
  116. contentWidth(e) {
  117. return (this.content.length + 1) * 55 + 10 + 'px'
  118. },
  119. contentWidthMin() {
  120. return 55 + 'px'
  121. },
  122. // 动态计算宽度
  123. boxWidth() {
  124. return this.getPosition(3, 'horizontal')
  125. },
  126. // 动态计算高度
  127. boxHeight() {
  128. return this.getPosition(3, 'vertical')
  129. },
  130. // 计算左下位置
  131. leftBottom() {
  132. return this.getPosition(0, 'left', 'bottom')
  133. },
  134. // 计算右下位置
  135. rightBottom() {
  136. return this.getPosition(0, 'right', 'bottom')
  137. },
  138. // 计算左上位置
  139. leftTop() {
  140. return this.getPosition(0, 'left', 'top')
  141. },
  142. rightTop() {
  143. return this.getPosition(0, 'right', 'top')
  144. },
  145. flexDirectionStart() {
  146. return this.getPosition(1, 'vertical', 'top')
  147. },
  148. flexDirectionEnd() {
  149. return this.getPosition(1, 'vertical', 'bottom')
  150. },
  151. horizontalLeft() {
  152. return this.getPosition(2, 'horizontal', 'left')
  153. },
  154. horizontalRight() {
  155. return this.getPosition(2, 'horizontal', 'right')
  156. }
  157. },
  158. watch: {
  159. pattern(newValue, oldValue) {
  160. this.styles = Object.assign({}, this.styles, newValue)
  161. }
  162. },
  163. created() {
  164. this.isShow = this.show
  165. if (this.top === 0) {
  166. this.fabShow = true
  167. }
  168. // 初始化样式
  169. this.styles = Object.assign({}, this.styles, this.pattern)
  170. },
  171. methods: {
  172. _onClick() {
  173. this.$emit('fabClick')
  174. if (!this.popMenu) {
  175. return
  176. }
  177. this.isShow = !this.isShow
  178. },
  179. open() {
  180. this.isShow = true
  181. },
  182. close() {
  183. this.isShow = false
  184. },
  185. /**
  186. * 按钮点击事件
  187. */
  188. _onItemClick(index, item) {
  189. this.$emit('trigger', {
  190. index,
  191. item
  192. })
  193. },
  194. /**
  195. * 获取 位置信息
  196. */
  197. getPosition(types, paramA, paramB) {
  198. if (types === 0) {
  199. return this.horizontal === paramA && this.vertical === paramB
  200. } else if (types === 1) {
  201. return this.direction === paramA && this.vertical === paramB
  202. } else if (types === 2) {
  203. return this.direction === paramA && this.horizontal === paramB
  204. } else {
  205. return this.isShow && this.direction === paramA ? this.contentWidth : this.contentWidthMin
  206. }
  207. }
  208. }
  209. }
  210. </script>
  211. <style lang="scss" scoped>
  212. .uni-fab {
  213. position: fixed;
  214. /* #ifndef APP-NVUE */
  215. display: flex;
  216. /* #endif */
  217. justify-content: center;
  218. align-items: center;
  219. z-index: 10;
  220. }
  221. .uni-fab--active {
  222. opacity: 1;
  223. }
  224. .uni-fab--leftBottom {
  225. left: 5px;
  226. bottom: 40px;
  227. /* #ifdef H5 */
  228. bottom: calc(40px + var(--window-bottom));
  229. /* #endif */
  230. padding: 10px;
  231. }
  232. .uni-fab--leftTop {
  233. left: 5px;
  234. top: 30px;
  235. /* #ifdef H5 */
  236. top: calc(30px + var(--window-top));
  237. /* #endif */
  238. padding: 10px;
  239. }
  240. .uni-fab--rightBottom {
  241. right: 5px;
  242. bottom: 20px;
  243. /* #ifdef H5 */
  244. bottom: calc(20px + var(--window-bottom));
  245. /* #endif */
  246. padding: 10px;
  247. }
  248. .uni-fab--rightTop {
  249. right: 5px;
  250. top: 30px;
  251. /* #ifdef H5 */
  252. top: calc(30px + var(--window-top));
  253. /* #endif */
  254. padding: 10px;
  255. }
  256. .uni-fab__circle {
  257. position: fixed;
  258. /* #ifndef APP-NVUE */
  259. display: flex;
  260. /* #endif */
  261. justify-content: center;
  262. align-items: center;
  263. width: 55px;
  264. height: 55px;
  265. background-color: #3c3e49;
  266. border-radius: 55px;
  267. z-index: 11;
  268. }
  269. .uni-fab__circle--leftBottom {
  270. left: 15px;
  271. bottom: 50px;
  272. /* #ifdef H5 */
  273. bottom: calc(50px + var(--window-bottom));
  274. /* #endif */
  275. }
  276. .uni-fab__circle--leftTop {
  277. left: 15px;
  278. top: 40px;
  279. /* #ifdef H5 */
  280. top: calc(40px + var(--window-top));
  281. /* #endif */
  282. }
  283. .uni-fab__circle--rightBottom {
  284. right: 15px;
  285. bottom: 30px;
  286. /* #ifdef H5 */
  287. bottom: calc(30px + var(--window-bottom));
  288. /* #endif */
  289. }
  290. .uni-fab__circle--rightTop {
  291. right: 15px;
  292. top: 40px;
  293. /* #ifdef H5 */
  294. top: calc(40px + var(--window-top));
  295. /* #endif */
  296. }
  297. .uni-fab__circle--left {
  298. left: 0;
  299. }
  300. .uni-fab__circle--right {
  301. right: 0;
  302. }
  303. .uni-fab__circle--top {
  304. top: 0;
  305. }
  306. .uni-fab__circle--bottom {
  307. bottom: 0;
  308. }
  309. .uni-fab__plus {
  310. font-weight: bold;
  311. }
  312. .fab-circle-v {
  313. position: absolute;
  314. width: 3px;
  315. height: 31px;
  316. left: 26px;
  317. top: 12px;
  318. background-color: white;
  319. transform: rotate(0deg);
  320. transition: transform 0.3s;
  321. }
  322. .fab-circle-h {
  323. position: absolute;
  324. width: 31px;
  325. height: 3px;
  326. left: 12px;
  327. top: 26px;
  328. background-color: white;
  329. transform: rotate(0deg);
  330. transition: transform 0.3s;
  331. }
  332. .uni-fab__plus--active {
  333. transform: rotate(135deg);
  334. }
  335. .uni-fab__content {
  336. /* #ifndef APP-NVUE */
  337. box-sizing: border-box;
  338. display: flex;
  339. /* #endif */
  340. flex-direction: row;
  341. border-radius: 55px;
  342. overflow: hidden;
  343. transition-property: width, height;
  344. transition-duration: 0.2s;
  345. width: 55px;
  346. border-color: #DDDDDD;
  347. border-width: 1rpx;
  348. border-style: solid;
  349. }
  350. .uni-fab__content--other-platform {
  351. border-width: 0px;
  352. box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  353. }
  354. .uni-fab__content--left {
  355. justify-content: flex-start;
  356. }
  357. .uni-fab__content--right {
  358. justify-content: flex-end;
  359. }
  360. .uni-fab__content--flexDirection {
  361. flex-direction: column;
  362. justify-content: flex-end;
  363. }
  364. .uni-fab__content--flexDirectionStart {
  365. flex-direction: column;
  366. justify-content: flex-start;
  367. }
  368. .uni-fab__content--flexDirectionEnd {
  369. flex-direction: column;
  370. justify-content: flex-end;
  371. }
  372. .uni-fab__item {
  373. /* #ifndef APP-NVUE */
  374. display: flex;
  375. /* #endif */
  376. flex-direction: column;
  377. justify-content: center;
  378. align-items: center;
  379. width: 55px;
  380. height: 55px;
  381. opacity: 0;
  382. transition: opacity 0.2s;
  383. }
  384. .uni-fab__item--active {
  385. opacity: 1;
  386. }
  387. .uni-fab__item-image {
  388. width: 25px;
  389. height: 25px;
  390. margin-bottom: 3px;
  391. }
  392. .uni-fab__item-text {
  393. color: #FFFFFF;
  394. font-size: 12px;
  395. text-align: center;
  396. }
  397. .uni-fab__item--first {
  398. width: 55px;
  399. }
  400. </style>