- طريقة تركيب الإضافة :
1- ادخل إلى مدونتك | وأختر تحرير قالب .
2- إبحث عن الوسم ]]></b:skin>
3- ضع الكود التالي فوقه .
الكود
#scroll {
display: none;
position: fixed;
top: 0;
left: 20px;
z-index: 500;
padding: 3px 8px;
background-color: #2187e7;
color: #fff;
border-radius: 3px;
}
#scroll:after {
content: ” ”;
position: absolute;
top: 50%;
left: -8px;
height: 0;
width: 0;
margin-top: -4px;
border: 4px solid transparent;
border-left-color: #2187e7;
}
4- ثم بعد ذلك إبحث عن الوسم </head>
5- ضع الكود التالي أسفله .
الكود
<div id='scroll'></div>
6- بعد ذلك أيضاً إبحث عن الوسم </body>
7- ضع الكود التالي فوقه .
الكود
<script type='text/javascript'>
/*<![CDATA[*/
var scrollTimer = null;
$(window).scroll(function() {
var viewportHeight = $(this).height(),
scrollbarHeight = viewportHeight / $(document).height() * viewportHeight,
progress = $(this).scrollTop() / ($(document).height() - viewportHeight),
distance = progress * (viewportHeight - scrollbarHeight) + scrollbarHeight / 2 - $('#scroll').height() / 2;
$('#scroll')
.css('top', distance)
.text(' (' + Math.round(progress * 100) + '%)')
.fadeIn(100);
if (scrollTimer !== null) {
clearTimeout(scrollTimer);
}
scrollTimer = setTimeout(function() {
$('#scroll').fadeOut();
}, 1500);
});
/*]]>*/
</script>
8- احفظ القالب .
0 Comments:
إرسال تعليق