Fiddle Exampleに示すように、ページの 1 つに複数のtabSlideOUt
ソースを同様の方法で使用する必要があります。
タブを切り替える必要があり、一度に開く必要があるのは 1 つだけです
$(function () {
$('.slide-out-div').tabSlideOut({
tabHandle: '.handle', //class of the element that will be your tab
pathToTabImage: 'http://www.gac.com/upload/GAC2012/images/facebook_icon_50x50.png', //path to the image for the tab (optionaly can be set using css)
imageHeight: '50px', //height of tab image
imageWidth: '50px', //width of tab image
tabLocation: 'right', //side of screen where tab lives, top, right, bottom, or left
speed: 300, //speed of animation
action: 'click', //options: 'click' or 'hover', action to trigger animation
topPos: '50px', //position from the top
fixedPosition: false //options: true makes it stick(fixed position) on scroll
});
});