-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (107 loc) · 2.47 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<html>
<head>
<title>LCGL</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<style type="text/css">
body{background-color:black;font-family:verdana;}
h1#lcgl {font-size:120pt;color:black}
div.center{text-align:center;margin-top:20%}
div.twitter {position:absolute;right:5px;top:5px;}
div#address {margin-top:20px;color:yellow;text-align:right}
div#sharetwit, div#shareface {padding:5px}
</style>
<script>
var colors = Array(
'ffd800',
'fedb19',
'fddc25',
'ffe243',
'fde24c',
'fce255',
'fee55c',
'fde665',
'fee86f',
'feea79',
'feeb81',
'fefc7e',
'fdfc86',
'fdfc93',
'fcfb9a',
'fcfbab',
'fafbb5',
'feffc2',
'fcfdcf',
'fafadd',
'fbfbed',
'ffffe5',
'fefeed',
'ffffff'
);
function updateColor(elementId){
var current_date = new Date();
var hour = current_date.getHours();
document.getElementById(elementId).style.color = colors[hour];
}
</script>
<script type="text/javascript" src="http://vkontakte.ru/js/api/share.js?10" charset="windows-1251"></script>
</head>
<body onload="updateColor('lcgl');">
<div class='twitter'>
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'search',
search: '#LCGL',
interval: 6000,
title: 'It\'s all about',
subject: 'LCGL',
width: 250,
height: 300,
theme: {
shell: {
background: '#333333',
color: '#f0f0a6'
},
tweets: {
background: '#333333',
color: '#ffffff',
links: '#fdffc2'
}
},
features: {
scrollbar: false,
loop: true,
live: true,
hashtags: true,
timestamp: true,
avatars: true,
toptweets: true,
behavior: 'default'
}
}).render().start();
</script>
<table><tr><td>
<div id="sharetwit">
<script type="text/javascript"><!--
document.write(VK.Share.button({url: "http://лкгл.рф"},{type: "round", text: "Рассказать"}));
--></script>
</div>
</td>
<td>
<div id="shareface">
<iframe src="http://www.facebook.com/plugins/like.php?href=%D0%BB%D0%BA%D0%B3%D0%BB.%D1%80%D1%84&layout=button_count&show_faces=false&width=115&action=recommend&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:115px; height:21px;" allowTransparency="true"></iframe>
</div>
</td></tr></table>
<div id="address">
Большой Лепрекон<br/>
Кремлевская, 11<br/>
4 декабря, 23.00<br/>
не пропусти
</div>
</div>
<div class="center">
<h1 id="lcgl">LCGL</h1>
</div>
</body>
</html>