newVideo.js 813 B

123456789101112131415161718192021222324252627
  1. var V={
  2. init: function(){
  3. $(".o-wrap").niceScroll({
  4. cursorcolor: "#d9d9d9",
  5. cursorwidth: "8",
  6. cursoropacity: 1,
  7. cursorborder: 'none',
  8. autohidemode: false
  9. })
  10. V.triggerTab("video-tab");
  11. },
  12. triggerTab : function(id){ //tab切换
  13. $ul=$("#"+id);
  14. $ul.on("click","li",function(){
  15. var $showul= $($(this).attr("data-id"));
  16. var $imgs = $showul.find("img");
  17. $(this).addClass("selected").siblings().removeClass("selected");
  18. $showul.show().siblings("ul").hide();
  19. // 替换图片
  20. $imgs.each(function(){
  21. var $this=$(this);
  22. $this.attr("src",$this.attr("data-src"));
  23. });
  24. })
  25. }
  26. }
  27. V.init();