Правила: сайта | форума
Ваш IP: 18.227.111.53 |
Ленточный вариант форума | Пользователи | Основные термины / Сленг | Правила форума | Поиск | RSS подписка
23:50 - 10.06.2024
23:47 - 10.06.2024
23:46 - 10.06.2024
23:37 - 10.06.2024
17:31 - 09.06.2024
Закладки Beta! [Избранные темы форума, сайта. Релизы участников форума. Эксклюзивные темы.]
  • Страница 1 из 1
  • 1
Троящийся при движении курсор
vu Добавлено: Понедельник, 21.09.2009, 12:59 | Сообщение № 1
Статус отсутствует

Уровень 1

[ 0 ]
Замечания: 0%
Заходим в "Файловый менеджер" и создаём там папку img, и пихаем туда картинку maus.gif

А потом вставляем этот код перед </head>:

Code
<script language="Javascript1.2">  
<!--  
var isNS = (navigator.appName == "Netscape");  
layerRef = (isNS) ? "document" : "document.all";  
styleRef = (isNS) ? "" : ".style";  
var queue = new Array();  
var NUM_OF_TRAIL_PARTS = 5  
for (x=1; x < 6; x++) {    
eval("trailSpriteFrame" + x + " = new Image(28,36);");  
eval("trailSpriteFrame" + x + ".src = '../img/maus.gif';");  
}  
function trailSpriteObj(anID) {  
this.trailSpriteID = "trailSprite" + anID;    
this.imgRef = "trailSprite" + anID + "img";    
this.currentFrame = 1;    
   this.animateTrailSprite = animateTrailSprite;    
}  
function animateTrailSprite() {  
if (this.currentFrame <6 ) {    
if (isNS) {eval("document." + this.trailSpriteID +".document['"+ this.imgRef + "'].src = trailSpriteFrame" + this.currentFrame + ".src");}    
else {eval("document['" + this.imgRef + "'].src = trailSpriteFrame" + this.currentFrame + ".src"); }  
this.currentFrame ++;    
   }    
else {eval(layerRef + '.' + this.trailSpriteID + styleRef + '.visibility = "hidden"');  
}    
}  
function processAnim() {  
   for(x=0; x < NUM_OF_TRAIL_PARTS; x++)  
   queue[x].animateTrailSprite();  
}  
function processMouse(e) {  
   currentObj = shuffleQueue();  
   if (isNS) {eval("document." + currentObj + ".left = e.pageX ;");  
   eval("document." + currentObj + ".top = e.pageY;");  
} else {eval("document.all." + currentObj + ".style.pixelLeft = event.clientX + document.body.scrollLeft;");  
   eval("document.all." + currentObj + ".style.pixelTop = event.clientY + document.body.scrollTop;");  
}  
}  
function shuffleQueue() {  
lastItemPos = queue.length - 1;  
lastItem = queue[lastItemPos];  
for (i = lastItemPos; i>0; i--)    
queue[i] = queue[i-1];  
queue[0] = lastItem;  
queue[0].currentFrame = 1;    
eval(layerRef + '.' + queue[0].trailSpriteID + styleRef + '.visibility = "visible"');    
return queue[0].trailSpriteID;  
}  

function init() {  
for(x=0; x<NUM_OF_TRAIL_PARTS; x++)    
queue[x] = new trailSpriteObj(x+1) ;  
if (isNS) { document.captureEvents(Event.MOUSEMOVE); }  
document.onmousemove = processMouse;  
setInterval("processAnim();",25);  
}    
window.onload = init;  
//-->  
</script>  
<div id="trailSprite1" style="position: absolute; height:28px; width:36px;z-index: 100"><img src="../img/maus.gif" border="0" name="trailSprite1img"></div>  
<div id="trailSprite2" style="position: absolute; height:28px; width:26px;z-index: 10"><img src="../img/maus.gif" border="0" name="trailSprite2img"></div>  
<div id="trailSprite3" style="position: absolute; height:28px; width:36px;z-index: 10"><img src="../img/maus.gif" border="0" name="trailSprite3img"></div>  
<div id="trailSprite4" style="position: absolute; height:28px; width:36px;z-index: 10"><img src="../img/maus.gif" border="0" name="trailSprite4img"></div>  
<div id="trailSprite5" style="position: absolute; height:28px; width:36px;z-index: 10"><img src="../img/maus.gif" border="0" name="trailSprite5img"></div>

http://www.fuck-pro.clan.su/downloa....r.html- Пример


http://lipetsknews.me/katalog-predpriyatij.html?sobi2Task=sobi2Details&catid=51&sobi2Id=584
 
СообщениеЗаходим в "Файловый менеджер" и создаём там папку img, и пихаем туда картинку maus.gif

А потом вставляем этот код перед </head>:

Code
<script language="Javascript1.2">  
<!--  
var isNS = (navigator.appName == "Netscape");  
layerRef = (isNS) ? "document" : "document.all";  
styleRef = (isNS) ? "" : ".style";  
var queue = new Array();  
var NUM_OF_TRAIL_PARTS = 5  
for (x=1; x < 6; x++) {    
eval("trailSpriteFrame" + x + " = new Image(28,36);");  
eval("trailSpriteFrame" + x + ".src = '../img/maus.gif';");  
}  
function trailSpriteObj(anID) {  
this.trailSpriteID = "trailSprite" + anID;    
this.imgRef = "trailSprite" + anID + "img";    
this.currentFrame = 1;    
   this.animateTrailSprite = animateTrailSprite;    
}  
function animateTrailSprite() {  
if (this.currentFrame <6 ) {    
if (isNS) {eval("document." + this.trailSpriteID +".document['"+ this.imgRef + "'].src = trailSpriteFrame" + this.currentFrame + ".src");}    
else {eval("document['" + this.imgRef + "'].src = trailSpriteFrame" + this.currentFrame + ".src"); }  
this.currentFrame ++;    
   }    
else {eval(layerRef + '.' + this.trailSpriteID + styleRef + '.visibility = "hidden"');  
}    
}  
function processAnim() {  
   for(x=0; x < NUM_OF_TRAIL_PARTS; x++)  
   queue[x].animateTrailSprite();  
}  
function processMouse(e) {  
   currentObj = shuffleQueue();  
   if (isNS) {eval("document." + currentObj + ".left = e.pageX ;");  
   eval("document." + currentObj + ".top = e.pageY;");  
} else {eval("document.all." + currentObj + ".style.pixelLeft = event.clientX + document.body.scrollLeft;");  
   eval("document.all." + currentObj + ".style.pixelTop = event.clientY + document.body.scrollTop;");  
}  
}  
function shuffleQueue() {  
lastItemPos = queue.length - 1;  
lastItem = queue[lastItemPos];  
for (i = lastItemPos; i>0; i--)    
queue[i] = queue[i-1];  
queue[0] = lastItem;  
queue[0].currentFrame = 1;    
eval(layerRef + '.' + queue[0].trailSpriteID + styleRef + '.visibility = "visible"');    
return queue[0].trailSpriteID;  
}  

function init() {  
for(x=0; x<NUM_OF_TRAIL_PARTS; x++)    
queue[x] = new trailSpriteObj(x+1) ;  
if (isNS) { document.captureEvents(Event.MOUSEMOVE); }  
document.onmousemove = processMouse;  
setInterval("processAnim();",25);  
}    
window.onload = init;  
//-->  
</script>  
<div id="trailSprite1" style="position: absolute; height:28px; width:36px;z-index: 100"><img src="../img/maus.gif" border="0" name="trailSprite1img"></div>  
<div id="trailSprite2" style="position: absolute; height:28px; width:26px;z-index: 10"><img src="../img/maus.gif" border="0" name="trailSprite2img"></div>  
<div id="trailSprite3" style="position: absolute; height:28px; width:36px;z-index: 10"><img src="../img/maus.gif" border="0" name="trailSprite3img"></div>  
<div id="trailSprite4" style="position: absolute; height:28px; width:36px;z-index: 10"><img src="../img/maus.gif" border="0" name="trailSprite4img"></div>  
<div id="trailSprite5" style="position: absolute; height:28px; width:36px;z-index: 10"><img src="../img/maus.gif" border="0" name="trailSprite5img"></div>

http://www.fuck-pro.clan.su/downloa....r.html- Пример

Автор - vu
Дата добавления - 21.09.2009 в 12:59
  • Страница 1 из 1
  • 1
Поиск:
Загрузка...

Тех. темы Приоритетные правила Служба поддержки

Вопрос - ответ (Новичкам!)

Баг-репорт (по сайту/форуму)

Ваши предложения

Правила: сайта | форума (Важно!)

Обязанности модератора

Правила добавления новостей

Гл. админ: Admin отправить ЛС


Саппорт | icq 88-39-445


Использование материалов форума на сторонних ресурсах без прямой обратной ссылки строго запрещено!

Профиль

Доска почета


Последние темы / Последнее обновление Самые популярные темы Лучшие форумчане Новые пользователи
  • admin

    - сообщ: (112)

2010 © «Зона-Медиа™» - Все права защищены. Используя наш сайт, Вы обязуетесь выполнять условия данного соглашения.
Часовой пояс GMT +2, время: 09:09