I am using jScrollpane to allow the overflow on divs.
The scrollbars are showing up and working correctly, (they move and allow content to scroll) but the arrows are not showing up.
Also, the mouse wheel / trackpad scroll is not working (on laptops) but is working on iPad 2. So (on laptops) you can click and drag the scrollbar to see the content, but cannot swipe the trackpad / mouse wheel whereas on iPad it is the opposite, you can swipe (track) over the text and the scroll works, but cannot drag the scrollbar.
1 - How do I get the arrows to show? 2 - How do I get the scroll to work with mousewheel / trackpad?
- I am less concerned with the iPad, it is functioning: I thought it was worth mentioning, to help diagnose the trackpad issue.
http://thepicturelab.tv/creatives/norman-bonney
PS. T开发者_如何转开发he site is developed in wordpress in the sandbox theme.
To get the arrows, don't forget to add {showArrows: true}
example:
$('.scroll-pane').jScrollPane({showArrows: true});
to use the scroll wheel, add the jQuery MouseWheel plugin: http://jscrollpane.kelvinluck.com/script/jquery.mousewheel.js
Study the examples at the jScrollpane site: http://jscrollpane.kelvinluck.com/
精彩评论