This is mainly a jquery thing. I have a container with articles which can navigate up/down. The up button hides upon load. The down button is meant to hide once the bottom is reached.
Currently the container shows 6 articles, but this is based on a fixed height.
I'm trying to figure out a way the hide the down button once the bottom is reached within the container (so no whitespace underneath the last article). Also trying to find a way so that each scroll movement scrolls the height of the top article (where the height can be any size).
The current solution isn't dynamic enough, any suggestions??
Jquery
var currentarticlePosition = 0;
var articleHeight = $('.scrollArticle').height();
var scrollArticle = $('.scrollArticle');
var numArticles = scrollArticle.length;
$('#scrollContainer').css('height', '500px');
$('.scrollArticle').removeClass('hide');
scrollControl(currentarticlePosition);
$('.controls').bind('click', function(){
currentarticlePosition = ($(this).attr('id')=='scrollDownButton') ? currentarticlePosition+1 : currentarticlePosition-1;
scrollControl(currentarticlePosition);
$('#scrollContainer').animate({ 'bottom' : articleHeight*currentarticlePosition })
});
function scrollControl(scrollposition){
if(scrollposition==0){
$('#scrollUpButton').hide()
} else{
$('#scrollUpButton').show()
}
// hide right arrow if scrollposition is last item
if(scrollposition==numArticles-5){
$('#scrollDownButton').hide()
} else{
$('#scrollDownButton').show()
}
}
CSS
.sideScrollbar {
background: #f5f5f5;
border: @border solid 1px;
padding: 49px 0 40px;
margin-bottom: 50px;
position: relative;
float: left;
width: 100%;
.scrollTitle {
display: block;
text-transform: uppercase;
font-size: 19px;
font-weight: bold;
font-family: 'PTSansNarrowBold', Arial, sans-serif;
padding: 0 0 10px 12px;
width: 100%;
&:hover,
&:hover h3 {
text-decoration: none;
}
h3 {
font-family: 'PTSansNarrowBold', Arial, sans-serif;
font-size: 19px;
text-transform: uppercase;
}
span {
color: @sublink;
padding: 0 2px;
font-weight: normal;
.ie7 & {
padding: 0 4px;
}
}
}
article {
border-top: @border solid 1px;
padding: 11px 0;
margin: 0 12px;
cursor: pointer;
&:hover {
border-bottom: @border 1px solid;
background: @background;
padding: 11px 12px;
margin: 0;
}
.scrollRelatedContent {
margin-top: 15px;
border-left: @border solid 1px;
border-right: @border solid 1px;
border-bottom: @border solid 1px;
padding: 15px 22px;
line-height: 32px;
li {
border: none;
padding: 0;
margin: 0;
}
a {
color: #000;
margin: 0;
padding: 0;
&:hover {
padding: 0;
margin: 0;
}
}
}
}
.activeArticle {
background: @background;
padding: 11px 12px;
margin: 0;
}
#scrollUpButton,
#scrollDownButton {
border: #C8C8C8 solid 1px;
display: block;
height: 44px;
left: 122px;
position: absolute;
text-indent: -9999px;
width: 52px;
cursor: pointer;
&:hover {
background-color: #E4E4E4;
}
}
#scrollUpButton {
top: -12px;
}
#scrollDownButton {
bottom: -12px;
}
}
HTML (the short version - there are 12 instances of scrollArticle)
<section class="sideScrollbar">
<a id="scrollUpButton" class="controls">Scroll Up</a>
<a href="#" class="scrollTitle"><h3>This Week's</h3></a>
<div id="scrollWrapper">
<div id="scrollContainer">
<article class="scrollArticle">
<a href="#">
<h3>Title goes here</h3>
</a>
<p class="subParagraph">
By <a href="#">Author</a>
in <a href="#">Category</a>
</p>
</article>
</div>
</div>
<a id="scrollDownButton" class="controls">Scroll Down</a>
</section>