当另一个tablideout打开时关闭一个tablideout

时间:2014-04-09 13:32:28

标签: jquery

我正在使用两个tablideout插件,这工作正常,但是当一个tablideout打开另一个时的主要问题是没有关闭,仍然有两个tablideout打开。我想当一个tablideout打开时,另一个仍然关闭。

jQuery(function(){
    jQuery('.slide-out-div').tabSlideOut({
        tabHandle: '.mailing_list',                     //class of the element that will become your tab
        pathToTabImage: 'images/contact_tab.gif', //path to the image for the tab //Optionally can be set using css
        imageHeight: '122px',                     //height of tab image           //Optionally can be set using css
        imageWidth: '40px',                       //width of tab image            //Optionally can be set using css
        tabLocation: 'right',                      //side of screen where tab lives, top, right, bottom, or left
        speed: 500,                               //speed of animation
        action: 'click',                          //options: 'click' or 'hover', action to trigger animation
        topPos: '200px',                          //position from the top/ use if tabLocation is left or right
        leftPos: '20px',                          //position from left/ use if tabLocation is bottom or top
        fixedPosition: false,                      //options: true makes it stick(fixed position) on scroll
        toogleHandle: true
    });

    jQuery('.slide-out-div-social-media').tabSlideOut({
        tabHandle: '.mailing_list_social-media',                     //class of the element that will become your tab
        pathToTabImage: 'images/contact_tab.gif', //path to the image for the tab //Optionally can be set using css
        imageHeight: '122px',                     //height of tab image           //Optionally can be set using css
        imageWidth: '40px',                       //width of tab image            //Optionally can be set using css
        tabLocation: 'right',                      //side of screen where tab lives, top, right, bottom, or left
        speed: 500,                               //speed of animation
        action: 'click',                          //options: 'click' or 'hover', action to trigger animation
        topPos: '200px',                          //position from the top/ use if tabLocation is left or right
        leftPos: '20px',                          //position from left/ use if tabLocation is bottom or top
        fixedPosition: false,                      //options: true makes it stick(fixed position) on scroll
        toogleHandle: true
    });

0 个答案:

没有答案