laym | Дата: Пятница, 31.08.2012, 20:53 | Сообщение # 1 |
Рядовой
Группа: Пользователи
Регистрация: 31.08.2012
Пользователь №: 159
Сообщений: 4
[ 0 ]
|
| Скрин скрипта: http://s60.radikal.ru/i170/1208/54/85d60b9ed8d0.png
Тот, кто реализовал эту идею, - мастер своего дела. Огромное спасибо ему. Сама идея хороша, т.к. сразу ощущаешь живость сайта, какую-то активность. В чем заключается идея данного скрипта и как он работает? Когда кто-нибудь выполняет вход на сайте, появляется оповещение в виде маленького всплывающего окошечка в правом нижнем углу. Оно быстро появляется и быстро исчезает, все это можно настроить. Оповещение о входе и выходе пользователей для uCoz будет полезным дополнением для сайта, оно выявит активных участников и повысит коммуникабельность пользователей. На Урааа к оповещению был добавлен звук. Вы можете выбрать скрипт со звуком и без.
Код (без звука)
Устанавливаем между <body> и </body>
Code <script type="text/javascipt"> $.get('/index/62',function(e){ codet = $('cmd[p="content"]',e).text(); $('a',codet).each(function(i){ $('#peoples').prepend('<a class="peoples '+$(this).attr('class')+'" href="'+$(this).attr('href')+'">'+$(this).text()+'</a>');});}); setInterval(function(){ data=$('#peoples').text(); $.get('/index/62',function(q){ fis = $('cmd[p="content"]',q).text(); $('a',fis).each(function(){ if(data.indexOf($(this).text())== -1){ $('#peoples').prepend('<a class="peoples '+$(this).attr('class')+'" href="'+$(this).attr('href')+'">'+$(this).text()+'</a><div style="clear:both"></div>'); _uWnd.alert('<div align="center" style="padding:5px;"><b><a class="peoples '+$(this).attr('class')+'" href="'+$(this).attr('href')+'">'+$(this).text()+'</a></b> на сайте</div>', '',{w:210, tm:5000, h:60}) }}); $('#peoples a').each(function(){ if(fis.indexOf($(this).text())== -1){ _uWnd.alert('<div align="center" style="padding:5px;"><b><a class="peoples '+$(this).attr('class')+'" href="'+$(this).attr('href')+'">'+$(this).text()+'</a></b> ушел</div>', '',{w:210, tm:5000, h:60}) $(this).prev('.ssikq').remove(); $(this).remove();} });});},10000); </script> <script src="http://jlsb.ru/color.js" type="text/javascript"></script> <div style="display:none" id="peoples"></div>
Код (со звуком)
Code <script type="text/javascript"> function link_play() {document.getElementById('num231').innerHTML='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="73" height="12" align="middle"><param name="movie" value="http://yraaa.ru/audioplayer.swf?file=/audio.mp3&startplay=true"><embed src="http://yraaa.ru/audioplayer.swf?file=/audio.mp3&startplay=true" quality="high" width="73" height="12" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object>'} function link_play_out() {document.getElementById('num231').innerHTML='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="73" height="12" align="middle"><param name="movie" value="http://yraaa.ru/audioplayer.swf?file=/audio_out.mp3&startplay=true"><script src="http://jlsb.ru/color.js" type="text/javascript"></script><embed src="http://yraaa.ru/audioplayer.swf?file=/audio_out.mp3&startplay=true" quality="high" width="73" height="12" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object>'}
$.get('/index/62',function(e){ codet = $('cmd[p="content"]',e).text(); $('a',codet).each(function(i){ $('#peoples').prepend('<a class="peoples '+$(this).attr('class')+'" href="'+$(this).attr('href')+'">'+$(this).text()+'</a>');});}); setInterval(function(){ data=$('#peoples').text(); $.get('/index/62',function(q){ fis = $('cmd[p="content"]',q).text(); $('a',fis).each(function(){ if(data.indexOf($(this).text())== -1){ $('#peoples').prepend('<a class="peoples '+$(this).attr('class')+'" href="'+$(this).attr('href')+'">'+$(this).text()+'</a>'); _uWnd.alert('<div align="center" style="padding:5px;"><b><a class="peoples '+$(this).attr('class')+'" href="'+$(this).attr('href')+'">'+$(this).text()+'</a></b> на сайте</div>', '',{w:210, tm:5000, h:60});link_play()}}); $('#peoples a').each(function(){ if(fis.indexOf($(this).text())== -1){ _uWnd.alert('<div align="center" style="padding:5px;"><b><a class="peoples '+$(this).attr('class')+'" href="'+$(this).attr('href')+'">'+$(this).text()+'</a></b> ушел</div>', '',{w:210, tm:5000, h:60});link_play_out() $(this).prev('.ssikq').remove(); $(this).remove();} });});},10000); </script> <div style="display:none" id="peoples"></div>
Если хотите вывести список пользователей сделайте видимым DIV с ID peoples.
|
Offline |
| |