123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- <template>
- <view>
- <view class="fab-box fab" :class="{
- leftBottom: leftBottom,
- rightBottom: rightBottom,
- leftTop: leftTop,
- rightTop: rightTop
- }">
- <view class="fab-circle" :class="{
- left: horizontal === 'left' && direction === 'horizontal',
- top: vertical === 'top' && direction === 'vertical',
- bottom: vertical === 'bottom' && direction === 'vertical',
- right: horizontal === 'right' && direction === 'horizontal'
- }"
- :style="{ 'background-color': styles.buttonColor }" @click="_onClick">
- <text class="uni-icon uni-icon-plusempty" :class="{ active: isShow }"></text>
- </view>
- <view class="fab-content" :class="{
- left: horizontal === 'left',
- right: horizontal === 'right',
- flexDirection: direction === 'vertical',
- flexDirectionStart: flexDirectionStart,
- flexDirectionEnd: flexDirectionEnd
- }"
- :style="{ width: boxWidth, height: boxHeight, background: styles.backgroundColor }">
- <view v-if="flexDirectionStart || horizontalLeft" class="fab-item first"></view>
- <view class="fab-item" v-for="(item, index) in content" :key="index" :class="{ active: isShow }" :style="{
- color: item.active ? styles.selectedColor : styles.color
- }"
- @click="_onItemClick(index, item)">
- <image class="content-image" :src="item.active ? item.selectedIconPath : item.iconPath" mode="widthFix"></image>
- <text class="text">{{ item.text }}</text>
- </view>
- <view v-if="flexDirectionEnd || horizontalRight" class="fab-item first"></view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- pattern: {
- type: Object,
- default () {
- return {};
- }
- },
- horizontal: {
- type: String,
- default: 'left'
- },
- vertical: {
- type: String,
- default: 'bottom'
- },
- direction: {
- type: String,
- default: 'horizontal'
- },
- content: {
- type: Array,
- default () {
- return [];
- }
- },
- show: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- fabShow: false,
- flug: true,
- isShow: false,
- styles: {
- color: '#3c3e49',
- selectedColor: '#007AFF',
- backgroundColor: '#fff',
- buttonColor: '#3c3e49'
- }
- };
- },
- created() {
- this.isShow = this.show;
- if (this.top === 0) {
- this.fabShow = true;
- }
- // 初始化样式
- this.styles = Object.assign({}, this.styles, this.pattern);
- },
- methods: {
- _onClick() {
- this.isShow = !this.isShow;
- },
- open() {
- this.isShow = true;
- },
- close() {
- this.isShow = false;
- },
- /**
- * 按钮点击事件
- */
- _onItemClick(index, item) {
- this.$emit('trigger', {
- index,
- item
- });
- },
- /**
- * 获取 位置信息
- */
- getPosition(types, paramA, paramB) {
- if (types === 0) {
- return this.horizontal === paramA && this.vertical === paramB;
- } else if (types === 1) {
- return this.direction === paramA && this.vertical === paramB;
- } else if (types === 2) {
- return this.direction === paramA && this.horizontal === paramB;
- } else {
- return this.isShow && this.direction === paramA ?
- this.contentWidth :
- this.contentWidthMin;
- }
- }
- },
- watch: {
- pattern(newValue, oldValue) {
- console.log(JSON.stringify(newValue));
- this.styles = Object.assign({}, this.styles, newValue);
- }
- },
- computed: {
- contentWidth(e) {
- return uni.upx2px((this.content.length + 1) * 110 + 20) + 'px';
- },
- contentWidthMin() {
- return uni.upx2px(110) + 'px';
- },
- // 动态计算宽度
- boxWidth() {
- return this.getPosition(3, 'horizontal');
- },
- // 动态计算高度
- boxHeight() {
- return this.getPosition(3, 'vertical');
- },
- // 计算左下位置
- leftBottom() {
- return this.getPosition(0, 'left', 'bottom');
- },
- // 计算右下位置
- rightBottom() {
- return this.getPosition(0, 'right', 'bottom');
- },
- // 计算左上位置
- leftTop() {
- return this.getPosition(0, 'left', 'top');
- },
- rightTop() {
- return this.getPosition(0, 'right', 'top');
- },
- flexDirectionStart() {
- return this.getPosition(1, 'vertical', 'top');
- },
- flexDirectionEnd() {
- return this.getPosition(1, 'vertical', 'bottom');
- },
- horizontalLeft() {
- return this.getPosition(2, 'horizontal', 'left');
- },
- horizontalRight() {
- return this.getPosition(2, 'horizontal', 'right');
- }
- }
- };
- </script>
- <style scoped>
- .fab-box {
- position: fixed;
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 2;
- }
- .fab-box.top {
- width: 60upx;
- height: 60upx;
- right: 30upx;
- bottom: 60upx;
- border: 1px #5989b9 solid;
- background: #6699cc;
- border-radius: 10upx;
- color: #fff;
- transition: all 0.3;
- opacity: 0;
- }
- .fab-box.active {
- opacity: 1;
- }
- .fab-box.fab {
- z-index: 10;
- }
- .fab-box.fab.leftBottom {
- left: 30upx;
- bottom: 60upx;
- }
- .fab-box.fab.leftTop {
- left: 30upx;
- top: 80upx;
- /* #ifdef H5 */
- top: calc(80upx + var(--window-top));
- /* #endif */
- }
- .fab-box.fab.rightBottom {
- right: 30upx;
- bottom: 60upx;
- }
- .fab-box.fab.rightTop {
- right: 30upx;
- top: 80upx;
- /* #ifdef H5 */
- top: calc(80upx + var(--window-top));
- /* #endif */
- }
- .fab-circle {
- display: flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- width: 110upx;
- height: 110upx;
- background: #3c3e49;
- /* background: #5989b9; */
- border-radius: 50%;
- box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
- z-index: 11;
- }
- .fab-circle.left {
- left: 0;
- }
- .fab-circle.right {
- right: 0;
- }
- .fab-circle.top {
- top: 0;
- }
- .fab-circle.bottom {
- bottom: 0;
- }
- .fab-circle .uni-icon-plusempty {
- color: #ffffff;
- font-size: 80upx;
- transition: all 0.3s;
- font-weight: bold;
- }
- .fab-circle .uni-icon-plusempty.active {
- transform: rotate(135deg);
- }
- .fab-content {
- background: #6699cc;
- box-sizing: border-box;
- display: flex;
- border-radius: 100upx;
- overflow: hidden;
- box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
- transition: all 0.2s;
- width: 110upx;
- }
- .fab-content.left {
- justify-content: flex-start;
- }
- .fab-content.right {
- justify-content: flex-end;
- }
- .fab-content.flexDirection {
- flex-direction: column;
- justify-content: flex-end;
- }
- .fab-content.flexDirectionStart {
- flex-direction: column;
- justify-content: flex-start;
- }
- .fab-content.flexDirectionEnd {
- flex-direction: column;
- justify-content: flex-end;
- }
- .fab-content .fab-item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 110upx;
- height: 110upx;
- font-size: 24upx;
- color: #fff;
- opacity: 0;
- transition: opacity 0.2s;
- }
- .fab-content .fab-item.active {
- opacity: 1;
- }
- .fab-content .fab-item .content-image {
- width: 50upx;
- height: 50upx;
- margin-bottom: 5upx;
- }
- .fab-content .fab-item.first {
- width: 110upx;
- }
- </style>
|