forked from FladeX/homakov.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcam.html
More file actions
24 lines (22 loc) · 663 Bytes
/
cam.html
File metadata and controls
24 lines (22 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<title>Sakurity babies</title>
</head>
<body>
<script>
function update_image(){
girl.src="./mycrush"+(Math.floor(Math.random()*9)+1)+".jpg";
}
setInterval(update_image, 3000);
window.onload=update_image;
</script>
<img style="opacity:0.5" id="girl">
<img style="position:absolute;left:200px;top:300px;" src="./play_white.png">
<object style="opacity:0.0;position:absolute;top:129px;left:100px;" width="270" height="270">
<param name="movie" value="cam.swf">
<embed src="cam.swf" width="270" height="270"></embed>
</object>
<br />
<a href="http://homakov.blogspot.ru/2013/06/camjacking-click-and-say-cheese.html">how it works</a>
</body>
</html>