var lastScrollTop = 0;
$(window).scroll(function(event){
var the_top = jQuery(document).scrollTop();
if ( (the_top > 466) && (the_top < lastScrollTop)){
$('.mob-fixed').addClass('fixed');
}else {
$('.mob-fixed').removeClass('fixed');
}
lastScrollTop = the_top;
});
<a href="следующая статья">а здесь не надо выводить названия статьи!!</a>
.b-popup{
width: 300px;
min-height: auto;
background-color: transparent;
overflow: hidden;
position: fixed;
top: 0px;
right: 0;
z-index: 99999;
display: none;
}
.op{
display: flex;
justify-content: space-around;
align-items: center;
color: #fff!important;
}
.b-popup .b-popup-content{
margin: 24px 124px 0px auto;
width:220px;
height: auto;
text-align: center;
padding:10px;
background-color: #7b59ea;
border-radius:5px;
box-shadow: 0px 0px 10px #000;
color: #fff;
}
// Функция для определения "мобильности" браузера
function MobileDetect() {
var UA = navigator.userAgent.toLowerCase();
return (/android|webos|iris|bolt|mobile|iphone|ipad|ipod|iemobile|blackberry|windows phone|opera mobi|opera mini/i
.test(UA)) ? true : false;
}
// Если браузер НЕ мобильный, отображаем ссылку
if (!MobileDetect()) {
document.getElementById( 'AddFavViaSheens' ).innerHTML = '<a class="link vot" href="" rel="sidebar" id="fav">Да</a>';
}
// Функция для добавления в закладки избранного | https://sheensay.ru?p=710
document.getElementById( 'AddFavViaSheens' ).onclick = function () {
var title = document.title,
url = document.location,
UA = navigator.userAgent.toLowerCase(),
isFF = UA.indexOf('firefox') != -1,
isMac = UA.indexOf('mac') != -1,
isWebkit = UA.indexOf('webkit') != -1,
isIE = UA.indexOf('.net') != -1;
if ((isIE || isFF) && window.external) { // IE, Firefox
window.external.AddFavorite(url, title);
return false;
}
if (isMac || isWebkit) { // Webkit (Chrome, Opera), Mac
document.getElementById('AddFavViaSheens').innerHTML = 'Нажмите "' + (isMac ? 'Command/Cmd' : 'Ctrl') + ' + D" для добавления страницы в закладки';
return false;
}
}
jQuery(document).ready(function($){
$("#close").click(function () {
$.cookie("popup", "24house", {expires: 0} );
$("#popup1").hide();
});
if ( $.cookie("popup") == null )
{
setTimeout(function(){
$("#popup1").show();
}, 4000)
}
else { $("#popup1").hide();
}
});
function PopUpHide(){
jQuery("#popup1").hide();
}
<div class="b-popup" id="popup1">
<div class="b-popup-content">
Добавить сайт в закладки?<i class="fa fa-star-o" aria-hidden="true"></i>
<div class="op">
<span id="AddFavViaSheens"> </span>
<a href="javascript:PopUpHide()" id="close">Нет</a>
</div>
</div>
</div>