Сейчас 127 заметки.
Как сделать Click-under. Создание Click-underа: различия между версиями
Материал из ЗАметки
Znayka (обсуждение | вклад) |
|||
(не показано 7 промежуточных версий 2 участников) | |||
Строка 5: | Строка 5: | ||
''Код Click-underа'': | ''Код Click-underа'': | ||
<pre> | <pre> | ||
+ | <script type="text/javascript"> | ||
+ | var params = "menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes" | ||
function PopShow3() { | function PopShow3() { | ||
CookieTest=navigator.cookieEnabled; | CookieTest=navigator.cookieEnabled; | ||
Строка 15: | Строка 17: | ||
ExpDate.setTime(ExpDate.getTime() + (24 * 60 * 60 * 1000)); | ExpDate.setTime(ExpDate.getTime() + (24 * 60 * 60 * 1000)); | ||
SetCookie('clickunder','1',ExpDate, "/"); | SetCookie('clickunder','1',ExpDate, "/"); | ||
− | window.open(" | + | window.open("http://vne.by/", "Yandex", params); |
window.focus(); | window.focus(); | ||
} | } | ||
Строка 25: | Строка 27: | ||
var clen = document.cookie.length; | var clen = document.cookie.length; | ||
var i = 0; | var i = 0; | ||
− | while (i < j = | + | while (i < clen) { |
− | SetCookie.arguments.length; | + | var j = i + alen; |
+ | if (document.cookie.substring(i, j) == arg) | ||
+ | return getCookieVal (j); | ||
+ | i = document.cookie.indexOf(" ", i) + 1; | ||
+ | if (i == 0) break; | ||
+ | } | ||
+ | return null; | ||
+ | } | ||
+ | function SetCookie (name, value) { | ||
+ | var argv = SetCookie.arguments; | ||
+ | var argc = SetCookie.arguments.length; | ||
+ | var expires = (argc > 2) ? argv[2] : null; | ||
var path = (argc > 3) ? argv[3] : null; | var path = (argc > 3) ? argv[3] : null; | ||
var domain = (argc > 4) ? argv[4] : null; | var domain = (argc > 4) ? argv[4] : null; | ||
Строка 37: | Строка 50: | ||
} | } | ||
document.onmouseup=PopShow3; | document.onmouseup=PopShow3; | ||
− | </ | + | </script></pre> |
− | + | Вставляем вышеуказанный код в страницу сайта перед закрывающим тегом </body>, но перед этим в коде необходимо изменить строку и указать свой сайт; | |
− | |||
− | |||
− | |||
− | + | window.open("http://vne.by/", "Yandex", params); | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Текущая версия на 10:46, 1 апреля 2015
Создание Click-underа.
Код Click-underа:
<script type="text/javascript"> var params = "menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes" function PopShow3() { CookieTest=navigator.cookieEnabled; if(CookieTest) { ClickUndercookie = GetCookie('clickunder'); if (ClickUndercookie == null) { var ExpDate = new Date (); ExpDate.setTime(ExpDate.getTime() + (24 * 60 * 60 * 1000)); SetCookie('clickunder','1',ExpDate, "/"); window.open("http://vne.by/", "Yandex", params); window.focus(); } } } function GetCookie (name) { var arg = name + "="; var alen = arg.length; var clen = document.cookie.length; var i = 0; while (i < clen) { var j = i + alen; if (document.cookie.substring(i, j) == arg) return getCookieVal (j); i = document.cookie.indexOf(" ", i) + 1; if (i == 0) break; } return null; } function SetCookie (name, value) { var argv = SetCookie.arguments; var argc = SetCookie.arguments.length; var expires = (argc > 2) ? argv[2] : null; var path = (argc > 3) ? argv[3] : null; var domain = (argc > 4) ? argv[4] : null; var secure = (argc > 5) ? argv[5] : false; document.cookie = name + "=" + escape (value) + ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + ((path == null) ? "" : ("; path=" + path)) + ((domain == null) ? "" : ("; domain=" + domain)) + ((secure == true) ? "; secure" : ""); } document.onmouseup=PopShow3; </script>
Вставляем вышеуказанный код в страницу сайта перед закрывающим тегом </body>, но перед этим в коде необходимо изменить строку и указать свой сайт;
window.open("http://vne.by/", "Yandex", params);