blob: 48cf0e4e41eb7cee04e5b1ca68461f9f053f817e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<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">
|