vue 获取随机色

Posted aidmjy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 获取随机色相关的知识,希望对你有一定的参考价值。

获取随机色,vue的使用

    <view class="slip-item" :style="{background:bgColor}" @tap="selectItem()"  @touchstart="touchStart"  @touchend="touchEnd" @touchmove="touchMove"
                v-for="item in 3" :key=‘item‘
            >    
                <view class="slip-itemBox">
                    <view class="slip-head">
                        {{title}}
                    </view>
                </view>
                
            </view>
            
mounted() {
            this.getColor()
        },
        
        methods: {
            // 获取随机色
            getColor(){
                let r = parseInt(Math.random() * 256)
                let g = parseInt(Math.random() * 256)
                let b = parseInt(Math.random() * 256)

                this.bgColor = `rgba(${r},${g},${b},0.3)`
            },
}

只是记录,以备后续有需要

以上是关于vue 获取随机色的主要内容,如果未能解决你的问题,请参考以下文章

HTML代码片段

java获取随机时间的源码片段

VSCode自定义代码片段1——vue主模板

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段(vue主模板)

VSCode自定义代码片段11——vue路由的配置