123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <template>
- <view class="semp-notice-bar" style="box-shadow: 0rpx 5rpx 12rpx 0rpx #c7c7c7;" :class="round?'round':''">
- <view class="show-box flex-row" :class="round?'round':''" v-show="showNotice" :style="{'background':bgColor}">
- <view class="icon" v-if="icon != 'none'">
- <uni-icon :type="icon" :size="iconSize" :color="setIconColor"></uni-icon>
- </view>
- <view class="show-info flex-row" :class="icon=='none'?'no-icon':''" v-if="showType=='slider'">
- <rich-text class="text-box" :class="rows && !scrollable?'text-rows':''" :style="{'margin-left':sw+'px','color':color,'font-size':textFontSize}" @click="onItemClick" :nodes="strText"></rich-text>
- </view>
- <view class="scroll-box" :style="{'color':color}" v-if="showType=='scrollTop'">
- <swiper vertical="true" autoplay="true" circular="true" interval="3000">
- <swiper-item v-for="(item, index) in arrayText" :key="index">
- <navigator @click="onItemClick">{{item}}</navigator>
- </swiper-item>
- </swiper>
- </view>
- <view class="scroll-box" :style="{'color':color}" v-if="showType=='scrollLeft'">
- <swiper autoplay="true" circular="true" interval="3000">
- <swiper-item v-for="(item, index) in arrayText" :key="index">
- <navigator @click="onItemClick">{{item}}</navigator>
- </swiper-item>
- </swiper>
- </view>
- </view>
- </view>
- </template>
- <script>
- import uniIcon from '../uni-icon/uni-icon.vue'
- export default {
- name: 'semp-notice-bar',
- components: {
- uniIcon
- },
- data() {
- return {
- boxWidth: '398',
- textwidth: '',
- sw: '0',
- timer: null,
- showNotice: true
- }
- },
- props: {
- strText: {
- type: String,
- default: '新版震撼发部了!',
- },
- //多条信息滚动模式
- arrayText: {
- type: Array,
- default () {
- return [
- '新版震撼发部了!',
- '人气爆红,发布日流量超过十万',
- '36氪热文榜推荐、CSDN公号推荐分享文章'
- ]
- }
- },
- //slider 滑动 scrollTop 上下滚动 scrollLeft横向滚动
- showType: {
- type: String,
- default: 'slider',
- },
- showTime: {
- type: [Number, String],
- default: ''
- },
- icon: {
- type: String,
- default: 'sound',
- },
- setIconColor: {
- type: String,
- default: '#3e6ffd',
- },
- iconSize:{
- type: Number,
- default: 30,
- },
- bgColor: {
- type: String,
- default: 'rgba(89, 158, 248, .08)',
- },
- color: {
- type: String,
- default: '#3e6ffd',
- },
- textFontSize: {
- type: String,
- default: '28rpx',
- },
- scrollable: {
- type: [Boolean, String],
- default: false,
- },
- //圆角
- round: {
- type: [Boolean, String],
- default: false,
- },
- //是否多行
- rows: {
- type: [Boolean, String],
- default: false,
- },
- },
- mounted() {
- let that = this;
- if (this.scrollable && !this.rows && this.showType == "slider") {
- that.sinit();
- setTimeout(function(){
- that.move();
- }, 2000)
- // this.move();
- }
- this.close()
- },
- methods: {
- sinit() {
- let query = uni.createSelectorQuery().in(this);
- let view = query.select(".text-box");
- view.fields({
- size: true,
- scrollOffset: true
- }, data => {
- // console.log("得到textwidth信息" + JSON.stringify(data));
- this.textwidth = data.width;
- }).exec();
- let box = query.select(".show-box");
- box.fields({
- size: true,
- scrollOffset: true
- }, data => {
- // console.log("得到boxWidth信息" + JSON.stringify(data));
- this.boxWidth = data.width;
- }).exec();
- },
- move() {
- let textLength = this.strText.length;
- this.sw = 0;
- this.timer = setInterval(() => {
- this.sw = this.sw - 1;
- if (-this.sw - textLength * 10 > this.textwidth) {
- this.sw = this.boxWidth
- }
- }, 25)
- // this.sw = this.boxWidth;
- // //console.error('运行长度:'+this.textwidth)
- // this.timer = setInterval(() => {
- // this.sw = this.sw - 1;
- // if (-this.sw - this.textwidth > 0) {
- // //clearInterval(this.timer);
- // this.sw = this.boxWidth
- // }
- // }, 25)
- },
- show() {
- this.showNotice = true;
- },
- close() {
- if ((this.timer || this.showType != 'slider') && this.showTime != '') {
- setInterval(() => {
- if (this.timer) {
- clearInterval(this.timer);
- }
- this.showNotice = false;
- }, this.showTime)
- }
- this.$emit("close");
- },
- onItemClick() {
- this.$emit('click')
- }
- },
- }
- </script>
- <style>
- .show-box {
- width: 96%;
- overflow: hidden;
- padding: 0 2%;
- }
- .text-box {
- display: block;
- white-space: nowrap;
- line-height: 36upx;
- padding: 20upx 0;
- }
- .icon {
- width: 60rpx;
- height: 76rpx;
- text-align: center;
- line-height: 76rpx;
- display: inline-block;
- vertical-align: middle;
- }
- .no-icon {
- flex: 1;
- width: calc(100%) !important;
- }
- .show-info {
- overflow: hidden;
- width: calc(100% - 60rpx);
- display: inline-block;
- vertical-align: middle;
- }
- .scroll-box {
- width: 94%;
- overflow: hidden;
- height: 76upx;
- line-height: 76upx;
- }
- .round {
- border-radius: 10rpx;
- }
- .text-box.text-rows {
- white-space: normal;
- }
- </style>
|