uniapp动态设置style
时间: 2023-09-03 16:10:27 浏览: 414
uniapp 实现更换主题皮肤
在Uniapp中,我们可以使用不同的方式来动态设置`style`属性。其中,常用的方式包括对象数组方式、对象方式和`calc`方式。
1. 对象数组方式:使用`style`属性的对象数组来设置不同的样式属性。例如,可以使用以下方式来设置`paddingTop`和`color`属性:
```html
<view :style="[{paddingTop: background},{color: getColor}]"></view>
```
这里的`background`和`getColor`是对应的变量或方法。
2. 对象方式:使用一个对象来设置`style`属性。例如,可以使用以下方式来设置`left`和`backgroundImage`属性:
```html
<view :style="{left:`${iconDistance}rpx`,backgroundImage:`url(${topBgImg})`}"></view>
```
这里的`iconDistance`和`topBgImg`是对应的变量或方法。
3. `calc`方式:使用`calc`函数来设置`style`属性。例如,可以使用以下方式来设置高度属性:
```html
<view :style="{height:'calc(100vh - ' + pageTopHeight + 'px - 140rpx)'}"></view>
```
这里的`pageTopHeight`是对应的变量或方法。
此外,还可以通过添加`class`样式来设置动态样式。例如:
```html
<view :class="getClass"></view>
```
这里的`getClass`是一个返回样式类名的方法。
通过以上方式,我们可以在Uniapp中动态设置`style`属性。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [uniapp动态设置style和class样式](https://blog.csdn.net/qq_40666120/article/details/108123186)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文