сейчас на сайте:
Лучшие сказки мира 03skazki.ru
Детектив и фантастика 03pressa.ru
Песни прошлых лет 03pesni.ru
Для досуга
Фото при наведении на блок отходит в сторону и открывает текст (вверх вниз вправо влево) jQuery Sliding door effect - TutsValley.com - DEMO Hover over the images to see the effect. Slide Right Effect from the tutorial Slide Left This effect is made by changing the inside of the animate function in JQuery. animate({ left : '-'+distance } Just making it into negative number, everything else is same as the normal effect. Slide Down This is effect is made slightly different then in the tutorial. var distance = $(this).outerHeight();and animate({ top : distance } As you can see, the distance variable is now the height of the div instead of it's width. Slide Up This is effect is made slightly different then in the tutorial. var distance = $(this).outerHeight();and animate({ top : '-' + distance } Same as sliding down effect, but we are making it into a negative number. Библиотека JAVASCRIPT 1997- Дизайн и сопровождение © SE@RCHER
This effect is made by changing the inside of the animate function in JQuery.
animate({ left : '-'+distance }
Just making it into negative number, everything else is same as the normal effect.
This is effect is made slightly different then in the tutorial.
var distance = $(this).outerHeight();and animate({ top : distance }
As you can see, the distance variable is now the height of the div instead of it's width.
var distance = $(this).outerHeight();and animate({ top : '-' + distance }
Same as sliding down effect, but we are making it into a negative number.