CSS have rules like @media, @keyframes, etc. Can such be made using javascript, e.g. @myCustomRule. If yes then how ? If no then is there any alternative to that or just to go with CSS ?
Advertisement
Answer
While you can’t create your own custom @rules, you can use the CSSOM to create supported rules and insert them into one of the browser’s stylehseets with JavaScript:
JavaScript
x
14
14
1
button.addEventListener('click', function () {
2
const sheets = document.styleSheets;
3
const lastStyleSheet = sheets[sheets.length - 1];
4
const rule = `@keyframes rotate {
5
0% {
6
transform: rotate(0deg);
7
} 100% {
8
transform: rotate(360deg);
9
}
10
}`;
11
12
lastStyleSheet.insertRule(rule, lastStyleSheet.rules.length);
13
box.classList.add('rotate');
14
});
JavaScript
1
9
1
#box {
2
border: 1px solid black;
3
height: 50px;
4
width: 50px;
5
}
6
7
#box.rotate {
8
animation: rotate 100ms infinite;
9
}
JavaScript
1
2
1
<div id="box"></div>
2
<button id="button">Add Animation via JS</button>