jQuery和css3炫酷弹性轮播图插件

当前位置:主页 > jQuery库 > 幻灯片和轮播图 > jQuery和css3炫酷弹性轮播图插件
jQuery和css3炫酷弹性轮播图插件
分享:

    插件介绍

    这是一款实用jQuery和css3制作的炫酷弹性背景轮播图插件。该jQuery轮播图在轮播的时候,图片背景像弹簧一样来回弹动,效果非常震撼。

    浏览器兼容性

    浏览器兼容性
    时间:11-20
    阅读:

简要教程

这是一款效果炫酷的jQuery和css3弹性背景轮播图插件,所有的现代浏览器都支持这个效果。

HTML

<div class="page_container">
  <div class="jumpto-block">
    <h2>Header 1</h2>
    <h3>SubHeader 1</h3>
    ....
    <h3>SubHeader 2</h3>
    ....
  </div>
  <div class="jumpto-block">  
    <h2>Header 2</h2>
    <h3>SubHeader 1</h3>
    ...
  </div>
</div>
                

调用插件

$(".page_container").jumpto({
  firstLevel: "> h2", // You can define which tag will represent your first level header. The default value is the <h2> tag. Any <h2> tag will automatically be used as a first level link in the menu.
  secondLevel: false, // We also support submenu. Like above, you can define the selector for the second level header to be used in the submenu. Default is false.
  innerWrapper: ".jumpto-block", // In case you want to switch the section wrapper class name to something else
  offset: 400, // You can define how many pixels until the jump to menu starts to follow you on scroll. Default is 400 pixels.
  animate: 1000, // You can define how fast/slow the page will scroll when the jump to menu is clicked. Set to false to turn off animation.
  navContainer: false, // If you want to place your jump to menu somewhere else, simply add a selector to your predefined jump to menu container here. The default is false and it will automatically be generated.
  anchorTopPadding: 20, // This option let you set the top padding when the jump to menu is clicked. This will let you control the space between your header and the top of the page. Default is 20 pixels.
  showTitle: "Jump To", // You can customize the title of the jump to menu here. Set to false if you want to hide the title
  closeButton: true // You can choose to show/hide the close button by toggling this to true/false respectively
});
                

更多详细信息请参看:https://github.com/peachananr/jumpto