Rommax
Проверенные
- Сообщения
- 1,342
- Реакции
- 502
- Баллы
- 8,215
Приветствую
Есть такой код
Подскажите как скрыть если размер страницы достигает 1400
Есть такой код
Подскажите как скрыть если размер страницы достигает 1400
Код:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('body').append('<div class="button-up" style="display: none;opacity: 0.7;width: 50px;height:100%;position: fixed;left: 0px; z-index: 0; top: 0px;cursor: pointer;text-align: center;line-height: 30px;color: #d3dbe4;font-weight: bold;">Go Top</div>');
jQuery (window).scroll (function () {
if (jQuery (this).scrollTop () > 100) {
jQuery ('.button-up').fadeIn();
} else {
jQuery ('.button-up').fadeOut();
}
});
jQuery('.button-up').click(function(){
jQuery('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
jQuery('.button-up').hover(function() {
jQuery(this).animate({
'opacity':'1',
}).css({'background-color':'rgba(19, 20, 21, 0.37)','color':'#d3dbe4','z-index' : '1'});
}, function(){
jQuery(this).animate({
'opacity':'0.7'
}).css({'background':'none','color':'#d3dbe4','z-index' : '1'});
});
});
</script>