Home > Article > Web Front-end > jquery implements floating sidebar example_jquery
The example in this article describes the implementation of floating sidebar with jquery. Share it with everyone for your reference. The details are as follows:
<!DOCTYPE html> <html> <head> <title>jQuery stickysidebar plugin</title> <link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:extralight,light,regular,bold' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/default.css" media="screen" /> <link rel="stylesheet" href="css/sticky.css" media="screen" /> </head> <body> <div id="wrap"> <header> <div id="main"> <h2>产品列表</h2> <ul id="products"> <li> <h3>产品1</h3> <img src="images/product.png" width="126" height="126" alt="product image" /> </li> <li class="end"> <h3>产品2</h3> <img src="images/product.png" width="126" height="126" alt="product image" /> </li> <li> <h3>产品3</h3> <img src="images/product.png" width="126" height="126" alt="product image" /> </li> <li> <h3>产品4</h3> <img src="images/product.png" width="126" height="126" alt="product image" /> </li> <li class="end"> <h3>产品5</h3> <img src="images/product.png" width="126" height="126" alt="product image" /> </li> </ul> </div> <div id="side"> <div id="basket"> <h3>这里是浮动的层~</h3> </div> </div> </div> <script src="js/jquery-1.7.1.min.js"></script> <script src="js/jquery.easing.1.3.js"></script> <script src="js/stickysidebar.jquery.js"></script> <script> $(function () { $("#basket").stickySidebar({ timer: 400 , easing: "easeInOutBack" }); }); </script> </body> </html>
I hope this article will be helpful to everyone’s jQuery programming.