blob: ee5a60ffd6d4c6a480b9f3270c7ca40fa7132b61 (
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
|
<!doctype html>
<html class="reftest-wait">
<style>
#parent.hidden {
display: none;
}
.icon {
opacity: 0;
transition: opacity 0.5s;
}
.icon.shrink {
animation: shrink 1s;
}
@keyframes shrink {
to { transform: scale(0); }
}
</style>
<div id="parent">
<div class="icon">Searching</div>
</div>
<script>
var icon = document.querySelector('.icon');
getComputedStyle(icon).opacity;
icon.style.opacity = 1;
icon.classList.add('shrink');
setTimeout(function() {
document.getElementById('parent').classList.add('hidden');
setTimeout(function() {
document.documentElement.removeAttribute('class');
}, 500);
}, 500);
</script>
</html>
|