shezhi.js 420 B

123456789101112131415
  1. (function () {
  2. var page = {
  3. isScroll: true,
  4. init: function ($page) {
  5. $page.find('#switch1').lrswitch();
  6. $page.find('#switch2').lrswitch();
  7. $page.find('#switch3').lrswitch();
  8. $page.find('#switch4').lrswitch();
  9. $page.find('#switch5').lrswitch();
  10. $page.find('#switch6').lrswitch();
  11. $page.find('#switch7').lrswitch();
  12. }
  13. };
  14. return page;
  15. })();