javascript 使用javascript修改css伪元素属性。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 使用javascript修改css伪元素属性。相关的知识,希望对你有一定的参考价值。
var UID = {
_current: 0,
getNew: function(){ this._current++; return this._current; },
_props: {},
addProp: function(id, prop, value) {
this._props[id] = {
prop : prop,
value: value
};
},
isPropExist: function(prop, value) {
for (const id in this._props) {
if (this._props.hasOwnProperty(id)) {
const element = this._props[id];
if (element.prop == prop && element.value == value) {
return id;
}
}
}
return false;
}
};
HTMLElement.prototype.pseudoStyle = function(element,prop,value){
var _this = this;
var _sheetId = 'pseudoStyles';
var _head = document.head || document.getElementsByTagName('head')[0];
var _sheet = document.getElementById(_sheetId) || document.createElement('style');
_sheet.id = _sheetId;
var regx = new RegExp('\\b' + 'pseudoStyle' + '.*?\\b', 'g');
_this.className = _this.className.replace(regx, '');
var currentID = UID.isPropExist(prop, value);
if (currentID != false) {
_this.className += ' ' + 'pseudoStyle' + currentID;
}
else {
var newID = UID.getNew();
UID.addProp(newID, prop, value);
_this.className += ' ' + 'pseudoStyle' + newID;
_sheet.innerHTML += ' .' + 'pseudoStyle' + newID + ':' + element + '{' + prop + ':' + value + '}';
_head.appendChild(_sheet);
}
return this;
};
// Example usage
// element.pseudoStyle('after', 'background-image',
// 'url("' + newImage + '") !important'
// );
以上是关于javascript 使用javascript修改css伪元素属性。的主要内容,如果未能解决你的问题,请参考以下文章
在 JavaScript 中使用 ... 修改对象
使用 JavaScript 使用 ADODB 修改 Microsoft Access 数据库
使用javascript修改复选框
使用javascript修改复选框
Javascript_动态修改css样式方法汇总
如何在 React.js 中使用 JavaScript 修改 CSS