美文网首页
vue写调色板

vue写调色板

作者: smartfeng | 来源:发表于2019-08-24 23:00 被阅读0次
调色板

组件开发App.vue

<template>
    <div>
        <div class="box" :style="{'background-color': `rgb(${r},${g},${b})`}"></div>
        <p>
            <input type="range" v-model="r" min="0" max="255">
            <input type="text" v-model="r" min="0" max="255">
        </p>
        <p>
            <input type="range" v-model="g" min="0" max="255">
            <input type="text" v-model="g" min="0" max="255">
        </p>
        <p>
            <input type="range" v-model="b" min="0" max="255">
            <input type="text" v-model="b" min="0" max="255">
        </p>
    </div>
</template>

<script>
    export default {
        data(){
            return{
                r: 100,
                g: 200,
                b: 123
            }
        }
    }
</script>

<style>
    .box{
        width: 200px;
        height: 200px;
    }
</style>

相关文章

网友评论

      本文标题:vue写调色板

      本文链接:https://www.haomeiwen.com/subject/evdcectx.html