vue中v-bind对样式的加强

v-bind对样式的加强

为了方便开发者进行样式控制,Vue扩展了v-bind的语法,可以针对class类名和style行内样式进行控制。

操作class

  • 语法 :class = "对象/数组"
  1. 对象→**键就是类名,值是布尔值。**如果值为true,有这个类,否则没有这个类

    • 适用场景:一个类名来回切换
  2. 数组数组中所有的类,都会添加到盒子上,本质就是一个class列表

html 复制代码
<head>
    <style>
        .box {
            width: 200px;
            height: 200px;
            border: 3px solid #000;
            font-size: 30px;
            margin-top: 10px;
        }
        .pink {
            background-color: pink;
        }
        .big {
            width: 300px;
            height: 300px;
        }
    </style>
</head>
<body>
    <div id="app">
        <div class="box" :class="{pink:true ,big:true}">mannor</div>
        <div class="box" :class="['pink','big']">雷迪亚兹</div>
    </div>
    <script src="https://cdn.jsdelivr.net/npm/vue@2.7.14/dist/vue.js"></script>
    <script>
        const app = new Vue({
            el: '#app',
            data: {
            }
        })
    </script>
</body>
</html>

操作style

  • 语法 :style = "样式对象"
    • 适用场景:某个具体属性的动态设置
html 复制代码
  <div id="app">
    <div class="box" :style="{width:'400px',height:'400px',backgroundColor:'green'}"></div>
  </div>

小demo--动态滑动条:

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .progress {
            height: 25px;
            width: 400px;
            border-radius: 15px;
            background-color: #272425;
            border: 3px solid #272425;
            box-sizing: border-box;
            margin-bottom: 30px;
        }
        .inner {
            width: 50%;
            height: 20px;
            border-radius: 10px;
            text-align: right;
            position: relative;
            background-color: #409eff;
            background-size: 20px 20px;
            box-sizing: border-box;
            transition: all 1s;
        }
        .inner span {
            position: absolute;
            right: -20px;
            bottom: -25px;
        }
    </style>
</head>
<body>
    <div id="app">
        <div class="progress">
            <div class="inner" :style="{width:precent+'%'}">
                <span>{{precent}}%</span>
            </div>
        </div>
        <button @click="precent=25">设置25%</button>
        <button @click="precent=50">设置50%</button>
        <button @click="precent=75">设置75%</button>
        <button @click="precent=100">设置100%</button>
    </div>
    <script src="https://cdn.jsdelivr.net/npm/vue@2.7.14/dist/vue.js"></script>
    <script>
        const app = new Vue({
            el: '#app',
            data: {
                precent: 0,
            }
        })
    </script>
</body>
</html>
相关推荐
我命由我1234518 分钟前
Tailwind CSS - Tailwind CSS 引入(安装、初始化、配置、引入、构建、使用 Tailwind CSS)
前端·javascript·css·npm·node.js·js
KrityCat1 小时前
Vue3的el-table-column增加跳转其他页面
开发语言·javascript·vue.js
KrityCat1 小时前
Vue3的el-table-column下拉输入实时查询API数据选择的实现方法
javascript·vue.js·ecmascript
aricvvang1 小时前
web安全 - CSRF
前端·后端·安全
亓才孓2 小时前
[JavaWeb]搜索表单区域
java·前端·css·css3·web
dreadp2 小时前
解锁豆瓣高清海报:深度爬虫与requests进阶之路
前端·爬虫·python·beautifulsoup·github·requests
zm3 小时前
C基础寒假练习(4)
java·前端·数据库
学问小小谢3 小时前
第23节课:前端调试技巧—掌握浏览器开发者工具与性能优化
前端·学习·安全·性能优化·交互·html5
@大迁世界4 小时前
React Native 0.77 发布:更强的样式支持与性能优化
javascript·react native·react.js·ecmascript