如果我的浏览器有来自 CSS 属性的本机实现,那么我应该有某种 Javascript API 来操作 mixins,就像我可以使用 CSS 变量一样:
document.body.style.setProperty('--some-property', 'value');
我用谷歌搜索了它,但遗憾的是大多数情况下我遇到了一个 css 框架,该框架有某种 hack 可以用 javascript 制作 css mixin,遗憾的是我没有找到关于它的 API 文档,有人知道怎么做吗?
HTMLElement.style是一个CSSStyleDeclaration有一个 API,但在那里我只能找到 setProperty 方法而没有 setMixin 方法。
进步:
如果我添加到 style 属性,@apply --some-mixin;
则不应用 mixin。现在我想我应该尝试制作自定义内联 css 并添加到文档中,但这仍然是一些 hacky 方法,而且它也不起作用。
这里有一些用于测试的片段,但请注意,您需要在浏览器中激活体验式 Web 平台功能才能看到 mixin 工作!
let container = document.getElementById('container');
for(var i = 1; i<=5; i++)
{
let itemElement = document.createElement('DIV');
itemElement.classList.add('item');
itemElement.innerText = `Some added item#${i}!`;
itemElement.style.color = `var(--item-${i}-color, blue)`;
let style = itemElement.getAttribute('style');
itemElement.setAttribute('style', `${style} @apply --item-${i};`);
container.appendChild( itemElement );
}
if( true /* some sort of logic which are not important */ )
{
container.style.setProperty('--item-2-color', 'green');
// @todo add custom mixin to item#4 to be highlighted someway, and use Javascript API without this type of hacks:
let style = container.getAttribute('style');
container.setAttribute('style', `${style} --item-4: { margin: 10px 0; background-color: orange; color: yellow; };`);
}
:root {
/* static css mixin */
--paper-shadow: {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
0 1px 5px 0 rgba(0, 0, 0, 0.12),
0 3px 1px -2px rgba(0, 0, 0, 0.2);
};
}
body, #container {
background: #eee; font-family: Arial, sans-serif;
}
h2 {
text-align: center;
}
#container {
padding: 30px;
--item-3-color: red;
/* initial css mixin from dinamic mixin */
--item-3: {
font-weight: bold;
};
}
#container .item {
background: #fff; padding: 20px 10px;
font-size: 90%; text-align: center; letter-spacing: 1px;
@apply --paper-shadow;
}
<h2>You need to activate #experimental-web-platform-features in your browser to see the mixin working!</h2>
<div id="container"></div>