-
Notifications
You must be signed in to change notification settings - Fork 0
/
share.html
47 lines (42 loc) · 1.36 KB
/
share.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Grigory Kalabin playground</title>
</head>
<body>
Ваш результат:
<pre id="testing-result">
Графическое восприятие - 20%
Импульсивность - 40%
Аналитичность - 30%
</pre>
<script type="text/javascript" src="//yastatic.net/share/share.js" charset="utf-8"></script>
<span id="ya_share1"></span>
<script type="text/javascript">
new Ya.share({
element: 'ya_share1',
elementStyle: {
'type': 'button',
'border': true,
'quickServices': ['facebook', 'odnoklassniki', 'twitter', 'vkontakte']
},
link: 'http://adriver.ru/test-yo-self',
title: 'Тест на определение стиля личности',
description: document.getElementById("testing-result").innerText
// popupStyle: {
// blocks: {
// 'Поделись-ка!': ['lj', 'twitter', '', 'vkontakte'],
// 'Поделись-ка по-другому!': ['lj', 'twitter', 'vkontakte']
// },
// copyPasteField: true
// },
// serviceSpecific: {
// twitter: {
// title: '#Yandex — the best search engine in the universe!'
// }
// }
});
</script>
</body>
</html>