uniapp怎样把<checkbox 多选框改为圆形
时间: 2023-08-06 17:07:45 浏览: 178
要将 `checkbox` 多选框改为圆形,可以通过设置 `checkbox` 的样式来实现。具体步骤如下:
1. 在 `App.vue` 或者对应页面的 `.vue` 文件中的 `<style>` 标签中添加以下样式代码:
```css
/* 将多选框的外观设为圆形 */
input[type='checkbox'] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 50%;
width: 20px;
height: 20px;
border: 1px solid #ccc;
}
/* 添加选中状态的样式 */
input[type='checkbox']:checked {
background-color: #007aff;
border-color: #007aff;
}
```
2. 在需要使用多选框的地方添加以下代码:
```html
<template>
<view class="checkbox-wrapper">
<checkbox-group v-model="selected">
<checkbox :name="item" :value="item" v-for="(item,index) in options" :key="index" />
</checkbox-group>
</view>
</template>
<script>
export default {
data() {
return {
options: ['选项1', '选项2', '选项3'],
selected: []
}
}
}
</script>
```
3. 在对应的 `<style>` 标签中添加多选框父元素的样式:
```css
.checkbox-wrapper {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
padding: 10px;
background-color: #fff;
}
```
这样就可以将 `checkbox` 多选框改为圆形了。需要注意的是,上述代码中使用了 `checkbox` 的父元素 `view` 的样式,可以根据实际需求进行调整。
阅读全文