blob: 686f00e8693045246763249e20537550ddf99d4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE html>
<html>
<style>
html {
/* Suppress scrollbars to avoid periodical unthrottling for transform */
/* animations on the compositor. */
overflow: hidden;
}
body {
margin: 0px;
padding: 0px;
}
#target {
position: absolute;
left:100px;
top:100px;
scale:2.1;
}
#rotate {
transform: rotate(180deg);
transform-origin: 50% 50%;
}
#theimg {
width: 100px;
height: 100px;
clip-path: polygon(0 0,100% 0,50% 100%);
}
</style>
<body>
<div id="target">
<div id="rotate">
<img id="theimg" src="repeatable-diagonal-gradient.png">
</div>
</div>
</body>
</html>
|