渐变字体
background-image:-webkit-linear-gradient(bottom,#379ED7,#0FE2EE,);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
更改对象的属性名
let listObj=[{count: 0.02,dateTime: "2022-04"},{count: 0.03,dateTime: "2022-05"},{count: 0.07,dateTime: "2022-06"}]
//将listObj中的key的名字替换掉
let replacenameObj=JSON.parse(JSON.stringify(listObj).replace(/dateTime/g, 'name')
let replaceObj=JSON.parse(JSON.stringify(replacenameObj).replace(/count/g, 'value')
//结果为replaceObj=[{value: 0.02,name: "2022-04"},{value: 0.03,name: "2022-05"},{value: 0.07,name: "2022-06"}]
**注意:**必须使用//g,正则进行匹配,否则就只能替换掉数组的第一项,
获取除某一个属性之外的所有属性
let listObj=[
{2022-04: 0.02,2022-05: 0.05,2022-06: 0,restDirectionName: "杭向",restName: "桐庐服务区"},
{2022-04: 0.02,2022-05: 0.05,2022-06: 0,restDirectionName: "杭向",restName: "桐庐服务区"},
{2022-04: 0.02,2022-05: 0.05,2022-06: 0,restDirectionName: "杭向",restName: "桐庐服务区"}
]
//获取除restName之外的所有属性值
const tempItem=[],
const _ = require('lodash')
listObj.map(item => {
// 获取除restName之外的所有属性值
tempItem.push(_.omit(item, ['restName']))
})
//结果为tempItem=[
{2022-04: 0.02,2022-05: 0.05,2022-06: 0,restDirectionName: "杭向"},
{2022-04: 0.02,2022-05: 0.05,2022-06: 0,restDirectionName: "杭向"},
{2022-04: 0.02,2022-05: 0.05,2022-06: 0,restDirectionName: "杭向"}]
修改谷歌浏览器记住密码输入框颜色改变功能
<style lang="scss">
// 修改input的默认样式
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
-webkit-text-fill-color: #ededed !important;
-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
background-color:transparent;
background-image: none;
transition: background-color 50000s ease-in-out 0s; /*背景色透明 生效时长 过渡效果 启用时延迟的时间*/
}
input {
background-color:transparent;
}
</style>
修改后