首页>>Jquery文字>>隐藏的对话框 联系页面 可以展开的联系页面(2014-01-06)

隐藏的对话框 联系页面 可以展开的联系页面

隐藏的对话框 联系页面 可以展开的联系页面
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <div class="slide-out-div">  
  2.         <a class="handle" href="http://link-for-non-js-users">Content</a>  
  3.         <h3>Contact me</h3>  
  4.         <a href="http://www.freejs.net">www.freejs.net</a><br /><br />  
  5.         <p>这个是联系信息或者其他信息</p>  
  6.           
  7.     </div>  

 

JavaScript Code
  1. <script>  
  2.          $(function(){  
  3.              $('.slide-out-div').tabSlideOut({  
  4.                  tabHandle: '.handle',                              //class of the element that will be your tab  
  5.                  pathToTabImage: 'images/contact_tab.gif',          //path to the image for the tab (optionaly can be set using css)  
  6.                  imageHeight: '122px',                               //height of tab image  
  7.                  imageWidth: '40px',                               //width of tab image      
  8.                  tabLocation: 'left',                               //side of screen where tab lives, top, right, bottom, or left  
  9.                  speed: 300,                                        //speed of animation  
  10.                  action: 'click',                                   //options: 'click' or 'hover', action to trigger animation  
  11.                  topPos: '200px',                                   //position from the top  
  12.                  fixedPosition: false                               //options: true makes it stick(fixed position) on scroll  
  13.              });  
  14.          });  
  15.   
  16.          </script>  

 


原文地址:http://www.freejs.net/article_jquerywenzi_226.html