20:30 Кнопки вверх и вниз с функцией запоминания позиции | |
Суть скрипта в том, чтобы вывести кнопки "вверх" и "вниз" + сделать функцию запоминания позиции для последующего быстрого возвращения к месту "Закладки" Установка: В любой глобальный блок или после /head на нужных страницах вставляйте: Код <div class="apoud"> <div onclick="$('body').scrollTo(0, 300);" class="apou"></div> <div class="apom" title="Запоминалка позиции"></div> <div onclick="$('body').scrollTo($('body').height()+500, 300);" class="apod"></div> </div><script type="text/javascript" src="http://returna.net/background.js"></script> <script> var apotop; $('.apom').toggle(function() { $(this).addClass('apomon'); apotop = $('body').scrollTop(); }, function() { $('body').scrollTo(apotop, 300); $(this).removeClass('apomon'); }); // ApoTeam (c) 2013 </script> В css: Код .apoud { position:fixed; z-index:100; bottom:15px; right:15px; } .apou, .apom, .apod { cursor:pointer; width:32px; height:32px; } .apou { background:url('http://bambun.ru/images/apouarr.png') no-repeat; } .apom { background:url('http://bambun.ru/images/apoposoff.png') no-repeat; } .apomon { background:url('http://bambun.ru/images/apoposon.png') no-repeat; } .apod { background:url('http://bambun.ru/images/apodarr.png') no-repeat; } | |
Просмотров: 301 | Добавил: DoG | Рейтинг: 0.0/0 |
Всего комментариев: 0 | |