Just to give a recommendation and a stylish finish, I use this:
Js
$ ('# jScrollPane'). bind (
'jsp-scroll-y',
function (event, scrollPositionY, isAtTop, isAtBottom)
{
if (scrollPositionY> 0) {
$(this).addClass('ShadowTOP')
}
if(isAtTop) {
$(this).removeClass('ShadowTOP')
}
}
).jScrollPane()
. GMail.
STYLE
.TransitionShadow{
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
}
.ShadowTOP{
-webkit-box-shadow: inset 0px 12px 16px -10px rgba(100, 100, 100, 0.3);
box-shadow: inset 0px 10px 16px -10px rgba(100, 100, 100, 0.3);
}