मैं एक मिश्रित वेब ब्राउज़र वातावरण (Chrome / IE11) में एक वेबपेज विकसित कर रहा हूं। IE11 सीएसएस चर का समर्थन नहीं करता है, क्या कोई पॉलीफ़िल या स्क्रिप्ट मौजूद है जो मुझे IE11 में सीएसएस चर का उपयोग करने की अनुमति देगा?
मैं एक मिश्रित वेब ब्राउज़र वातावरण (Chrome / IE11) में एक वेबपेज विकसित कर रहा हूं। IE11 सीएसएस चर का समर्थन नहीं करता है, क्या कोई पॉलीफ़िल या स्क्रिप्ट मौजूद है जो मुझे IE11 में सीएसएस चर का उपयोग करने की अनुमति देगा?
जवाबों:
हां, जब तक आप रूट-स्तरीय कस्टम गुण (IE9 +) संसाधित कर रहे हैं।
README से:
विशेषताएं
- CSS कस्टम गुणों का क्लाइंट-साइड ट्रांसफ़ॉर्मेशन स्टैटिक वैल्यूज़ के लिए
- आधुनिक और विरासत ब्राउज़र दोनों में रनटाइम वैल्यू के लाइव अपडेट
- रूपांतरण
<link>
,<style>
और@import
सीएसएसurl()
पूर्ण URL के सापेक्ष पथ परिवर्तित करता है- जंजीर और नेस्टेड
var()
कार्यों का समर्थन करता हैvar()
फ़ंक्शन फ़ॉलबैक मानों का समर्थन करता है- वेब घटकों / छाया DOM CSS का समर्थन करता है
- देखो मोड ऑटो-अपडेट पर
<link>
और<style>
परिवर्तन- UMD और ES6 मॉड्यूल उपलब्ध है
- टाइपस्क्रिप्ट परिभाषाएँ शामिल हैं
- लाइटवेट (6k मिनट + gzip) और निर्भरता-मुक्त
सीमाएं
- कस्टम संपत्ति समर्थन
:root
और:host
घोषणाओं तक सीमित है- Var () का उपयोग संपत्ति मूल्यों (प्रति W3C विनिर्देशन ) तक सीमित है
पुस्तकालय क्या संभाल सकते हैं, इसके कुछ उदाहरण यहां दिए गए हैं:
रूट-स्तरीय कस्टम गुण
:root {
--a: red;
}
p {
color: var(--a);
}
कस्टम गुण जंजीर
:root {
--a: var(--b);
--b: var(--c);
--c: red;
}
p {
color: var(--a);
}
नेस्टेड कस्टम गुण
:root {
--a: 1em;
--b: 2;
}
p {
font-size: calc(var(--a) * var(--b));
}
पतन के मूल्य
p {
font-size: var(--a, 1rem);
color: var(--b, var(--c, var(--d, red)));
}
रूपांतरण <link>
, <style>
और @import
सीएसएस
<link rel="stylesheet" href="/absolute/path/to/style.css">
<link rel="stylesheet" href="../relative/path/to/style.css">
<style>
@import "/absolute/path/to/style.css";
@import "../relative/path/to/style.css";
</style>
वेब घटकों / छाया DOM को परिवर्तित करता है
<custom-element>
#shadow-root
<style>
.my-custom-element {
color: var(--test-color);
}
</style>
<div class="my-custom-element">Hello.</div>
</custom-element>
पूर्णता के लिए: w3c स्पेक्स
उम्मीद है की यह मदद करेगा।
(बेशर्म आत्म-प्रचार: जाँच)
--primary: #aaa
घोषणा को संसाधित नहीं किया जाएगा। इस मुद्दे में एक अधिक विस्तृत विवरण प्रदान किया गया है: जड़ से बाहर का समर्थन ।
:root
सीमा मेरे लिए कोई समस्या नहीं है। आगे के प्रदर्शन के लाभ के लिए, विकल्पों की जाँच करें, जैसे { exclude: '[href*=jquery-ui],...', preserveStatic: false }
।
यह पॉलीफ़िल IE11 में कस्टम गुण ( न केवल रूट-स्तर ) के लिए लगभग पूर्ण समर्थन सक्षम करता है :
https://github.com/nuxodin/ie11CustomProperties
स्क्रिप्ट इस तथ्य का उपयोग करती है कि IE में न्यूनतम कस्टम गुण समर्थन हैं जहां गुणों को परिभाषित किया जा सकता है और मन में कैस्केड के साथ पढ़ा जा सकता है।
.myEl {-ie-test:'aaa'} // only one dash allowed! "-"
फिर इसे जावास्क्रिप्ट में पढ़ें:
getComputedStyle( querySelector('.myEl') )['-ie-test']
- गतिशील जोड़ा एचटीएमएल सामग्री
- गतिशील जोड़ा संभालती है
<style>
,<link>
-सीमेंट्स- श्रृंखलन
--bar:var(--foo)
- मैदान छोड़ना
var(--color, blue)
- : फोकस,: लक्ष्य,: होवर
- js-एकीकरण:
style.setProperty('--x','y')
style.getPropertyValue('--x')
getComputedStyle(el).getPropertyValue('--inherited')
- इनलाइन शैलियों:
<div ie-style="--color:blue"...
- झरना काम करता है
- वंशानुक्रम काम करता है
- 3k (न्यूनतम + gzip) और निर्भरता से मुक्त
<script src="yourJsPath/ie11CustomProperties.js"></script>
अपनी HTML फ़ाइल के हेड सेक्शन में जोड़ना होगा और IE11 कंसर्न करेगा।
+1 कोड-स्निपेट लिंक के लिए ऊपर प्रश्न टिप्पणी अनुभाग में [मेरे पास कोड है]। एक बात जो मुझे मिली, वह यह है कि स्निपेट को शिकायत करने के लिए IE11 के लिए JSON प्रारूप में परिभाषित फ़ंक्शन घोषणाओं को थोड़ा संशोधित करने की आवश्यकता है। नीचे कोड पेन स्निपेट का थोड़ा संशोधित संस्करण है:
let cssVarPoly = {
init: function() {
// first lets see if the browser supports CSS variables
// No version of IE supports window.CSS.supports, so if that isn't supported in the first place we know CSS variables is not supported
// Edge supports supports, so check for actual variable support
if (window.CSS && window.CSS.supports && window.CSS.supports('(--foo: red)')) {
// this browser does support variables, abort
console.log('your browser supports CSS variables, aborting and letting the native support handle things.');
return;
} else {
// edge barfs on console statements if the console is not open... lame!
console.log('no support for you! polyfill all (some of) the things!!');
document.querySelector('body').classList.add('cssvars-polyfilled');
}
cssVarPoly.ratifiedVars = {};
cssVarPoly.varsByBlock = {};
cssVarPoly.oldCSS = {};
// start things off
cssVarPoly.findCSS();
cssVarPoly.updateCSS();
},
// find all the css blocks, save off the content, and look for variables
findCSS: function() {
let styleBlocks = document.querySelectorAll('style:not(.inserted),link[type="text/css"]');
// we need to track the order of the style/link elements when we save off the CSS, set a counter
let counter = 1;
// loop through all CSS blocks looking for CSS variables being set
[].forEach.call(styleBlocks, function (block) {
// console.log(block.nodeName);
let theCSS;
if (block.nodeName === 'STYLE') {
// console.log("style");
theCSS = block.innerHTML;
cssVarPoly.findSetters(theCSS, counter);
} else if (block.nodeName === 'LINK') {
// console.log("link");
cssVarPoly.getLink(block.getAttribute('href'), counter, function (counter, request) {
cssVarPoly.findSetters(request.responseText, counter);
cssVarPoly.oldCSS[counter] = request.responseText;
cssVarPoly.updateCSS();
});
theCSS = '';
}
// save off the CSS to parse through again later. the value may be empty for links that are waiting for their ajax return, but this will maintain the order
cssVarPoly.oldCSS[counter] = theCSS;
counter++;
});
},
// find all the "--variable: value" matches in a provided block of CSS and add them to the master list
findSetters: function(theCSS, counter) {
// console.log(theCSS);
cssVarPoly.varsByBlock[counter] = theCSS.match(/(--.+:.+;)/g) || [];
},
// run through all the CSS blocks to update the variables and then inject on the page
updateCSS: function() {
// first lets loop through all the variables to make sure later vars trump earlier vars
cssVarPoly.ratifySetters(cssVarPoly.varsByBlock);
// loop through the css blocks (styles and links)
for (let curCSSID in cssVarPoly.oldCSS) {
// console.log("curCSS:",oldCSS[curCSSID]);
let newCSS = cssVarPoly.replaceGetters(cssVarPoly.oldCSS[curCSSID], cssVarPoly.ratifiedVars);
// put it back into the page
// first check to see if this block exists already
if (document.querySelector('#inserted' + curCSSID)) {
// console.log("updating")
document.querySelector('#inserted' + curCSSID).innerHTML = newCSS;
} else {
// console.log("adding");
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = newCSS;
style.classList.add('inserted');
style.id = 'inserted' + curCSSID;
document.getElementsByTagName('head')[0].appendChild(style);
}
};
},
// parse a provided block of CSS looking for a provided list of variables and replace the --var-name with the correct value
replaceGetters: function(curCSS, varList) {
// console.log(varList);
for (let theVar in varList) {
// console.log(theVar);
// match the variable with the actual variable name
let getterRegex = new RegExp('var\\(\\s*' + theVar + '\\s*\\)', 'g');
// console.log(getterRegex);
// console.log(curCSS);
curCSS = curCSS.replace(getterRegex, varList[theVar]);
// now check for any getters that are left that have fallbacks
let getterRegex2 = new RegExp('var\\(\\s*.+\\s*,\\s*(.+)\\)', 'g');
// console.log(getterRegex);
// console.log(curCSS);
let matches = curCSS.match(getterRegex2);
if (matches) {
// console.log("matches",matches);
matches.forEach(function (match) {
// console.log(match.match(/var\(.+,\s*(.+)\)/))
// find the fallback within the getter
curCSS = curCSS.replace(match, match.match(/var\(.+,\s*(.+)\)/)[1]);
});
}
// curCSS = curCSS.replace(getterRegex2,varList[theVar]);
};
// console.log(curCSS);
return curCSS;
},
// determine the css variable name value pair and track the latest
ratifySetters: function(varList) {
// console.log("varList:",varList);
// loop through each block in order, to maintain order specificity
for (let curBlock in varList) {
let curVars = varList[curBlock];
// console.log("curVars:",curVars);
// loop through each var in the block
curVars.forEach(function (theVar) {
// console.log(theVar);
// split on the name value pair separator
let matches = theVar.split(/:\s*/);
// console.log(matches);
// put it in an object based on the varName. Each time we do this it will override a previous use and so will always have the last set be the winner
// 0 = the name, 1 = the value, strip off the ; if it is there
cssVarPoly.ratifiedVars[matches[0]] = matches[1].replace(/;/, '');
});
};
// console.log(ratifiedVars);
},
// get the CSS file (same domain for now)
getLink: function(url, counter, success) {
var request = new XMLHttpRequest();
request.open('GET', url, true);
request.overrideMimeType('text/css;');
request.onload = function () {
if (request.status >= 200 && request.status < 400) {
// Success!
// console.log(request.responseText);
if (typeof success === 'function') {
success(counter, request);
}
} else {
// We reached our target server, but it returned an error
console.warn('an error was returned from:', url);
}
};
request.onerror = function () {
// There was a connection error of some sort
console.warn('we could not get anything from:', url);
};
request.send();
}
};
cssVarPoly.init();
मैंने पॉलीफ़िल के इस संस्करण की कोशिश की, लेकिन त्रुटियों के साथ समाप्त हो गया जब सीएसएस में एक पंक्ति में कई चर (एफआई फ़ॉन्ट और रंग) थे। मेरे एक सहयोगी ने मेरी मदद की। लाइन 94 देखें।
let cssVarPoly = {
init: function() {
// first lets see if the browser supports CSS variables
// No version of IE supports window.CSS.supports, so if that isn't supported in the first place we know CSS variables is not supported
// Edge supports supports, so check for actual variable support
if (window.CSS && window.CSS.supports && window.CSS.supports('(--foo: red)')) {
// this browser does support variables, abort
// console.log('your browser supports CSS variables, aborting and letting the native support handle things.');
return;
} else {
// edge barfs on console statements if the console is not open... lame!
// console.log('no support for you! polyfill all (some of) the things!!');
document.querySelector('body').classList.add('cssvars-polyfilled');
}
cssVarPoly.ratifiedVars = {};
cssVarPoly.varsByBlock = {};
cssVarPoly.oldCSS = {};
// start things off
cssVarPoly.findCSS();
cssVarPoly.updateCSS();
},
// find all the css blocks, save off the content, and look for variables
findCSS: function() {
let styleBlocks = document.querySelectorAll('style:not(.inserted),link[type="text/css"]');
// we need to track the order of the style/link elements when we save off the CSS, set a counter
let counter = 1;
// loop through all CSS blocks looking for CSS variables being set
[].forEach.call(styleBlocks, function (block) {
// console.log(block.nodeName);
let theCSS;
if (block.nodeName === 'STYLE') {
// console.log("style");
theCSS = block.innerHTML;
cssVarPoly.findSetters(theCSS, counter);
} else if (block.nodeName === 'LINK') {
// console.log("link");
cssVarPoly.getLink(block.getAttribute('href'), counter, function (counter, request) {
cssVarPoly.findSetters(request.responseText, counter);
cssVarPoly.oldCSS[counter] = request.responseText;
cssVarPoly.updateCSS();
});
theCSS = '';
}
// save off the CSS to parse through again later. the value may be empty for links that are waiting for their ajax return, but this will maintain the order
cssVarPoly.oldCSS[counter] = theCSS;
counter++;
});
},
// find all the "--variable: value" matches in a provided block of CSS and add them to the master list
findSetters: function(theCSS, counter) {
// console.log(theCSS);
cssVarPoly.varsByBlock[counter] = theCSS.match(/(--.+:.+;)/g) || [];
},
// run through all the CSS blocks to update the variables and then inject on the page
updateCSS: function() {
// first lets loop through all the variables to make sure later vars trump earlier vars
cssVarPoly.ratifySetters(cssVarPoly.varsByBlock);
// loop through the css blocks (styles and links)
for (let curCSSID in cssVarPoly.oldCSS) {
// console.log("curCSS:",oldCSS[curCSSID]);
let newCSS = cssVarPoly.replaceGetters(cssVarPoly.oldCSS[curCSSID], cssVarPoly.ratifiedVars);
// put it back into the page
// first check to see if this block exists already
if (document.querySelector('#inserted' + curCSSID)) {
// console.log("updating")
document.querySelector('#inserted' + curCSSID).innerHTML = newCSS;
} else {
// console.log("adding");
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = newCSS;
style.classList.add('inserted');
style.id = 'inserted' + curCSSID;
document.getElementsByTagName('head')[0].appendChild(style);
}
};
},
// parse a provided block of CSS looking for a provided list of variables and replace the --var-name with the correct value
replaceGetters: function(curCSS, varList) {
// console.log(varList);
for (let theVar in varList) {
// console.log(theVar);
// match the variable with the actual variable name
// console.log (theVar);
var res = theVar.match(/--[a-zA-Z0-9-]+/g);
// console.log (res[0]);
theVar = res[0];
let getterRegex = new RegExp('var\\(\\s*' + theVar + '\\s*\\)', 'g');
// console.log(getterRegex);
// console.log(curCSS);
curCSS = curCSS.replace(getterRegex, varList[theVar]);
// now check for any getters that are left that have fallbacks
let getterRegex2 = new RegExp('var\\(\\s*.+\\s*,\\s*(.+)\\)', 'g');
// console.log(getterRegex);
// console.log(curCSS);
let matches = curCSS.match(getterRegex2);
if (matches) {
// console.log("matches",matches);
matches.forEach(function (match) {
// console.log(match.match(/var\(.+,\s*(.+)\)/))
// find the fallback within the getter
curCSS = curCSS.replace(match, match.match(/var\(.+,\s*(.+)\)/)[1]);
});
}
// curCSS = curCSS.replace(getterRegex2,varList[theVar]);
};
// console.log(curCSS);
return curCSS;
},
// determine the css variable name value pair and track the latest
ratifySetters: function(varList) {
// console.log("varList:",varList);
// loop through each block in order, to maintain order specificity
for (let curBlock in varList) {
let curVars = varList[curBlock];
// console.log("curVars:",curVars);
// loop through each var in the block
curVars.forEach(function (theVar) {
// console.log(theVar);
// split on the name value pair separator
let matches = theVar.split(/:\s*/);
// console.log(matches);
// put it in an object based on the varName. Each time we do this it will override a previous use and so will always have the last set be the winner
// 0 = the name, 1 = the value, strip off the ; if it is there
cssVarPoly.ratifiedVars[matches[0]] = matches[1].replace(/;/, '');
});
};
// console.log(ratifiedVars);
},
// get the CSS file (same domain for now)
getLink: function(url, counter, success) {
var request = new XMLHttpRequest();
request.open('GET', url, true);
request.overrideMimeType('text/css;');
request.onload = function () {
if (request.status >= 200 && request.status < 400) {
// Success!
// console.log(request.responseText);
if (typeof success === 'function') {
success(counter, request);
}
} else {
// We reached our target server, but it returned an error
console.warn('an error was returned from:', url);
}
};
request.onerror = function () {
// There was a connection error of some sort
console.warn('we could not get anything from:', url);
};
request.send();
}
};
cssVarPoly.init();
इंटरनेट एक्सप्लोरर का समर्थन करने के लिए, बस नीचे दी गई लिपि का उपयोग index.html हेड टैग में करें और यह एक आकर्षण की तरह काम कर रही है।
<script>window.MSInputMethodContext && document.documentMode && document.write('<script src="https://cdn.jsdelivr.net/gh/nuxodin/ie11CustomProperties@4.1.0/ie11CustomProperties.min.js"><\x2fscript>');</script>