blob: fafb98b2dc0b3f6bbbf8440d9049e2980b1996b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE HTML>
<html>
<title>Animation on element which is partially out of the view</title>
<style>
div {
position: absolute;
width: 200px;
height: 200px;
background-color: blue;
top: -100px;
}
</style>
<div></div>
|