15 lines
268 B
HTML
15 lines
268 B
HTML
<style>
|
|
.x {
|
|
transform: scale(1, 1) rotate(50deg);
|
|
opacity: 0.2;
|
|
transition: transform 0.96s, opacity 1s;
|
|
border: solid medium;
|
|
offset-path: path('M0 1 1 0');
|
|
}
|
|
</style>
|
|
<script>
|
|
window.onload = () => {
|
|
a.setAttribute("class", "x")
|
|
}
|
|
</script>
|
|
<ol id="a">
|