我正在尝试使用ShadowDomv1(https://github.com/webcomponents/webcomponentsjs和https://github.com/webcomponents/shadycss),但它无效。
ShadowDom本身可以工作,但是css没有封装(我们可以看到h2
css规则)。
它适用于Chrome和Safari(但它们本身都支持ShadowDomv1)。
我错过了什么或不可能吗?
这里是jsbin:http://jsbin.com/maqohoxowu/edit?html,output
代码:
<script type="text/javascript" src="https://rawgithub.com/webcomponents/webcomponentsjs/master/webcomponents-hi-sd-ce.js"></script>
<style type="text/css">
h2 {
color: red;
border-bottom: 1px black dotted;
}
</style>
<h2>h2 red and dotted</h2>
<my-element>
</my-element>
<template id="myElementTemplate">
<style scope="my-element">
h2 {color: blue}
</style>
<div>
<h2>h2 blue and not dotted !</h2> <!-- Should not be dotted because of the encapsulation -->
</div>
</template>
<script type="text/javascript">
ShadyCSS.prepareTemplate(myElementTemplate, 'my-element');
class MyElement extends HTMLElement {
connectedCallback() {
ShadyCSS.styleElement(this);
if (!this.shadowRoot) {
this.attachShadow({mode: 'open'});
this.shadowRoot.appendChild(document.importNode(myElementTemplate.content, true));
}
ShadyCSS.styleElement(this);
}
}
customElements.define("my-element", MyElement);
</script>
答案 0 :(得分:1)
您可以使用CustomStyleInterface仅将文档级样式应用于非Shadow DOM:
const CustomStyleInterface = window.ShadyCSS.CustomStyleInterface;
CustomStyleInterface.addCustomStyle(document.querySelector('style.doc-level'));
class MyElement extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.appendChild(document.importNode(myElementTemplate.content, true));
}
}
customElements.define("my-element", MyElement);
&#13;
<script src="https://rawgithub.com/webcomponents/webcomponentsjs/master/webcomponents-hi-sd-ce.js"></script>
<script src="https://rawgit.com/webcomponents/shadycss/master/custom-style-interface.min.js"></script>
<style class="doc-level">
h2 {
color: red;
border-bottom: 1px black dotted;
}
</style>
<h2>h2 red and dotted</h2>
<my-element></my-element>
<template id="myElementTemplate">
<style>
h2 {color: blue}
</style>
<div>
<h2>h2 blue and not dotted !</h2>
</div>
</template>
&#13;
答案 1 :(得分:0)
根据Mozillas平台状态页面,Shadow DOM仍处于开发阶段。 https://platform-status.mozilla.org/#shadow-dom
答案 2 :(得分:0)
polyfill无法模拟由真正的ShadowDOM本机处理的CSS封装。
相反,如果您打算同时使用两者,那么请避免使用简单的CSS选择器。而是尝试使用像BEM这样的CSS命名模式:http://getbem.com/introduction/
这将允许您的CSS在大多数情况下在真正的ShadowDOM和ShadyDOM中工作。