| vad4game | Дата: Понедельник, 30.08.2010, 17:34 | Сообщение # 1 |
 Флудер
Группа: Проверенные
Сообщений: 290
Награды: 27
Репутация: 212
Статус: Offline
| подскажите как мне поставить вот такой скрипт в каталог файлов в раздел картинки
|
| |
| |
| BRAGA | Дата: Понедельник, 30.08.2010, 17:37 | Сообщение # 2 |
Группа: Постоянный
Сообщений: 1873
Награды: 34
Репутация: 3494
Статус: Offline
| vad4game, оО. Мой старый сайт, приятно Ссори за офтоп.
Linkum | Off-Design.Ru
|
| |
| |
| vad4game | Дата: Понедельник, 30.08.2010, 17:39 | Сообщение # 3 |
 Флудер
Группа: Проверенные
Сообщений: 290
Награды: 27
Репутация: 212
Статус: Offline
| BRAGA, да, лутшеб помог)
|
| |
| |
| pushist | Дата: Понедельник, 30.08.2010, 20:49 | Сообщение # 4 |
 Знаток всего
Группа: Постоянный
Сообщений: 1832
Награды: 91
Репутация: 1671
Статус: Offline
| Code <script type="text/javascript" src="/js/jquery.easing.1.3.js"></script> <script> $(document).ready(function () {
// transition effect style = 'easeOutQuart';
// if the mouse hover the image $('.photo').hover( function() { //display heading and caption $(this).children('div:first').stop(false,true).animate({top:0},{duration:200, easing: style}); $(this).children('div:last').stop(false,true).animate({bottom:0},{duration:200, easing: style}); },
function() { //hide heading and caption $(this).children('div:first').stop(false,true).animate({top:-50},{duration:200, easing: style}); $(this).children('div:last').stop(false,true).animate({bottom:-50},{duration:200, easing: style}); } );
}); </script> <style>
.photo { position:relative; font-family:arial; overflow:hidden; border:5px solid #000; width:350px; height:233px; }
.photo .heading, .photo .caption { position:absolute; background:#000; height:50px; width:350px; opacity:0.6; }
.photo .heading { top:-50px; }
.photo .caption { bottom:-50px; left:0px; }
.photo .heading span { color:#26c3e5; top:-50px; font-weight:bold; display:block; font-size:15px; padding:5px 0 0 10px; }
.photo .caption span{ color:#999; font-size:11px; display:block; padding:5px 10px 0 10px; }
</style> В head А это в каталог файлов где тебе надо! Code <div class="photo"> <div class="heading"><span>Название картинки</span></div> <img src="$IMG_URL1$"> <div class="caption"><span>Здесь любое ваше описание</span></div> </div>
Сообщение отредактировал pushist - Понедельник, 30.08.2010, 20:49 |
| |
| |
| vad4game | Дата: Вторник, 31.08.2010, 08:30 | Сообщение # 5 |
 Флудер
Группа: Проверенные
Сообщений: 290
Награды: 27
Репутация: 212
Статус: Offline
| pushist, спс
|
| |
| |