Red() 函数
red() 函数非常简单,其主要用来获取一个颜色当中的红色值。假设有一个 #f36 的颜色,如果你想得到 #f36 中的 red 值是多少,这个时候使用 red() 函数就能很简单获取。
>> red(#f36)
255
得到的值是”255”。(注...
yekong
3年前 (2021-08-19)
喜欢
rgba()
rgba() 函数主要用来将一个颜色根据透明度转换成 rgba 颜色。
rgba($red,$green,$blue,$alpha) //将一个rgba颜色转译出来,和未转译的值一样
rgba($color,$alpha) //将一个Hex颜色转换成rgba颜色...
yekong
3年前 (2021-08-19)
喜欢
input::-webkit-input-placeholder {
color: rgba(0, 204, 254, 1);
}
input::-moz-input-placeholder {
color:rgba(0, 204, 254, 1);
...
yekong
3年前 (2021-08-19)
喜欢
第一种
.el-table--enable-row-hover .el-table__body tr:hover>td{
background-color: #c6cfdf !important;
}
第二种
.el-table__body tr:hover>t...
yekong
3年前 (2021-08-19)
喜欢
{BMap, map} 地图组件渲染完毕时触发,返回一个百度地图的核心类和地图实例。百度地图组件是异步加载,请不要尝试在组件的生命周期中访问 BMap 核心类和 map 实例,如有需要,请在所需组件的 ready 事件回调函数的参数中获取。
即不要再vue的生命周期中对地图的b...
yekong
3年前 (2021-08-19)
喜欢
Can't find node in PATH, trying to find a node binary on your system
husky > pre-commit (node v8.4.0)
lint-staged requires at least v...
yekong
3年前 (2021-08-19)
喜欢
html
<video v-show="showvideo" id="video" muted class="shipin" autoplay="autoplay" controls=&...
yekong
3年前 (2021-08-17)
喜欢
nginx部署vue开发的项目history模式下除了将vue编译后的文件上传到线上外,还需要配置nginx的伪静态才可以正常访问
nginx vue项目history伪静态规则
location / {
try_files $uri $uri/ /index.html;
...
yekong
3年前 (2021-08-16)
喜欢
首先安装依赖
npm i postcss-pxtorem --save
创建配置文件
postcss.config.js
module.exports = {
plugins: {
autoprefixer: {},
"postcss-pxtore...
yekong
3年前 (2021-08-16)
喜欢
是postcss-pxtorem版本太高了
从6.0降到5.1.1就可以正常运行了
"postcss-pxtorem": "^5.1.1",
...
yekong
3年前 (2021-08-07)
喜欢