孙空空的Vue之路-Day03-Class与Style的绑定操作

这篇博客介绍了在Vue.js中如何进行class和style的动态绑定操作。通过示例代码展示了如何根据数据变化来改变元素的样式和类名,包括绑定字符串、数组和对象。还提供了一个按钮,当点击时会更新绑定的颜色和字体大小。
摘要由CSDN通过智能技术生成

Class与Style的绑定操作

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>class与style的绑定操作</title>
    <style>
        .aClass {
            color: #ff42b6;
        }

        .bClass {
            color: #ff941e;
        }
    </style>
</head>
<body>

<div id="demo">
    <h1>class与style的绑定操作</h1>
    <!--class可以绑定字符串、数组、对象-->
    <p :class="a">class绑定字符串</p>
    <p :class="{aClass:isA , bClass:isB}">class绑定对象</p>
    <p :style="{color:activeColor , fontSize:fontSize + 'px'}">style的绑定操作</p>

    <button @click="updateColor">点击更改颜色</button>
</div>

<script type="text/javascript" src="../js/vue.js"></script>
<script type="text/javascript">
    new Vue({
        el:'#demo',
        data:{
            a:'aClass',
            isA:true,
            isB:false,
            activeColor:'#ff941e',
            fontSize:'20'
        },

        methods: {
            updateColor() {
                this.a = 'bClass',
                this.isA = false,
                this.isB = true,
                this.activeColor = '#ff42b6',
                this.fontSize = '30'
            }
        }
    })

</script>
</body>
</html>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值