Tuesday, 11 October 2016

jquery auto scroll div content vertical

<html>
<head>
<script language="javascript">
ScrollRate = 100;

function scrollDiv_init() {
DivElmnt = document.getElementById('MyDivName');
ReachedMaxScroll = false;

DivElmnt.scrollTop = 0;
PreviousScrollTop  = 0;

ScrollInterval = setInterval('scrollDiv()', ScrollRate);
}

function scrollDiv() {

if (!ReachedMaxScroll) {
DivElmnt.scrollTop = PreviousScrollTop;
PreviousScrollTop++;

ReachedMaxScroll = DivElmnt.scrollTop >= (DivElmnt.scrollHeight - DivElmnt.offsetHeight);
}
else {
ReachedMaxScroll = (DivElmnt.scrollTop == 0)?false:true;

DivElmnt.scrollTop = PreviousScrollTop;
PreviousScrollTop--;
}
}

function pauseDiv() {
clearInterval(ScrollInterval);
}

function resumeDiv() {
PreviousScrollTop = DivElmnt.scrollTop;
ScrollInterval    = setInterval('scrollDiv()', ScrollRate);
}
</script>
</head>
<body onLoad="scrollDiv_init()">
<div id="MyDivName" style="overflow:auto;width:50%;height:20%" onMouseOver="pauseDiv()" onMouseOut="resumeDiv()">Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com 
</div>
</body>
</html>


jquery auto scroll div content vertical

No comments:

Post a Comment