当前位置:   article > 正文

vue2中,应用实例-CSS中的变量使用——var() 函数用于动态改变颜色 & 全局样式详情版_vue动态修改scss变量

vue动态修改scss变量

vue2中,应用实例-CSS中的变量使用——var() 函数用于动态改变颜色 & 全局样式详情版

第一步:定义css文件

src/assets/css/main.css

简略版

* {
  margin: 0;
  padding: 0;
}

:root {
  --color-gray: #5e6d82;
  --color-light: #a1dbf5;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

第二步:在App.vue中进行引入

src/App.vue

<template>
<div id="app" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(82, 82, 82, 0.8) !important" v-loading="loading">
  <router-view></router-view>
</div>
</template>

<script>
export default {
  name: "App",
  computed: {
    loading() {
      return this.$store.state.map.loading
    }
  }
};
</script>

<style lang="less">
@import "./assets/css/main.css";

#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

第三步:在页面index.vue中进行使用

index.vue

<template>
    <span class='name-label'>连锁品牌</span>
    <div  style="border: 1px solid var(--color-light);width: 30px;height: 30px;color: var(--color-light);font-size: 26px;float: left;margin-right: 8px;">
       {{name}}
    </div>
</template>

<style scoped>
  .name-label {
    font-size: 12px;
    line-height: 30px;
    color: var(--color-light);
  }
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

效果

在这里插入图片描述

详情版

* {
  margin: 0;
  padding: 0;
}

:root {
  --color-dark: #060714;
  --color-light: #a1dbf5;
  --color-base: #242731;
  --color-red: #f6565d;
  --color-lavender: #4e55af;
  --color-purple: #494f86;
  --color-brown: #33364b;
  --color-gray: #5e6d82;
  --color-white: #fff;

  --border-active-color: #5b93ff;

  --color-normal-btn: #666b79;
  --button-default-bg: var(--color-base);
  --button-default-border: #606575;
  --button-default-color: #d7d7d7;
  --button-default-bg-hover: #2f374b;
  --button-default-bd-hover: #182848;
  --button-default-hover: #ffffff;
  --button-default-bg-focus: #2f374b;
  --button-default-bd-focus: #a0dbf5;
  --button-default-focus: #a1dbf5;

  --button-primary-bg: #a0dbf5;
  --button-primary-color: #222538;
  --button-primary-bg-hover: #88b7cf;

  --base-fount-familt-CN: 'Microsoft YaHei';
  --base-fount-familt-EN: Arial;

  --table-title-text: var(--color-white);
  --table-content-text: #d6d6d6;
}

html,
body,
#app,
.wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei',
    arial, STHeiTi, sans-serif;
}

a {
  text-decoration: none;
}

.content-box {
  position: absolute;
  left: 250px;
  right: 0;
  top: 70px;
  bottom: 0;
  padding-bottom: 30px;
  -webkit-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
  background: #f0f0f0;
}

.content {
  width: auto;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.content-collapse {
  left: 65px;
}

.container {
  padding: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.map .leaflet-container {
  background: #f5f5f5;
  outline: 0;
}

/***** 全局样式 *****/

/*滚动条*/

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: var(--color-base);
}

*::-webkit-scrollbar-thumb {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #464750;
}

input:disabled,
select:disabled,
button:disabled,
a:disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}

/* 自定义滚动条 */

.fm-scroll {
  overflow: auto;
}

.fm-scroll::-webkit-scrollbar {
  background: rgba(0, 0, 0, 0.1);
}

.fm-scroll::-webkit-scrollbar-thumb {
  background: #c1c1c1;
}

/* 文本超长显示控制 */

.fm-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

div.fm-stretch {
  width: 100%;
  height: 100%;
}

div.fm-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 自适应宽高 */

.fm-fitsize {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* 用于布局的div样式 */

.fm-layout-container {
  position: absolute;
  box-shadow: 0 0 10px #93bbff;
  z-index: 9;
  /* 处理div(display:inline-block)之间的间隙*/
  font-size: 0px;
}

.fm-layout-container.left {
  width: auto;
  height: 100%;
  top: 0;
  left: 0;
}

.fm-layout-container.right {
  width: 300px;
  height: 100%;
  top: 0;
  right: 0;
}

.fm-layout-container.bottom {
  width: 100%;
  height: 300px;
  bottom: 0;
  right: 0;
  left: 0;
}

.fm-layout-container>div {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

a.fm-container-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
  background: url('../images/common/icon_close.png') no-repeat center center transparent;
}

a.fm-container-close:hover {
  transform: rotate(90deg);
}

.flat-btn {
  vertical-align: middle;
  cursor: pointer;
}


.cursor-point {
  cursor: pointer;
}


.floatRight {
  float: right;
}

/* 重新element-UI的的样式 */
.el-collapse .el-collapse-item__header {
  background-color: var(--color-base);
  padding-left: 10px;
  color: var(--color-white);
  font-weight: 600;
  border-top: 1px solid var(--button-default-border);
}

.el-collapse .el-collapse-item__content {
  padding-left: 10px;
  padding-bottom: 5px;
  color: var(--color-white);
}

.el-collapse-item__wrap {
  background: var(--color-base);
  color: var(--color-white);
}

.el-form>>>.el-form-item .el-form-item__label {
  font-size: 12px;
}

.el-form>>>.el-form-item .el-form-item__content {
  font-size: 12px;
}

.collapse_title {
  padding-left: 10px;
  font-size: 14px;
}

.el-form>>>.el-form-item {
  margin: 5px 0px;
}

.el-form>>>.el-form-item--mini.el-form-item {
  margin: 5px 0px;
}

.dialog-footer,
.el-dialog__footer {
  width: 100%;
  display: inline-block;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/82342
推荐阅读
相关标签
  

闽ICP备14008679号