Скрипт регистрация в верхнем правом углу сайта для uCoz`a
Установка:
В нижнюю часть сайта вставляем:
Code
<?if(!$USER_LOGGED_IN$)?><script type="text/javascript">
$(function($) {
$("#onlinehelp img").hover(
function () {
$(this).animate({right: '0'}, {queue:false, duration: 350});
},
function () {
$(this).animate({right: '-160px'}, {queue:false, duration: 350});
}
);
});
</script>
<a id="onlinehelp" href="/index/3"
onclick="webChatOpen();return false;">
<img alt="Регистрация" src="http://uwebo4ka.3dn.ru/scripts/registration/rega.png" />
</a>
<style type="text/css">
#onlinehelp img {
position: fixed;
top:40px;
right: -160px;
z-index: 99999;
cursor: pointer;
display: block;
}
</style> <?endif?>
|