# sidebar **Repository Path**: JqueryObjects/sidebar ## Basic Information - **Project Name**: sidebar - **Description**: Jquery常用网站右侧侧边栏功能 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-08-02 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # jquery常用网站右侧侧边栏功能 sidebar 效果如下: ![](images/img.gif) html code: ``` js带语音的右侧悬浮在线客服代码
申请试用 在线咨询 申请合作 开关音效
``` js code: ``` (function() { // 返回顶部按钮自动隐藏 $(window).scroll(function(){ if ($(window).scrollTop()>200){ $('#goTop').fadeIn(); }else if($(window).scrollTop()<200){ $('#goTop').fadeOut(); } }); $('#goTop').click(function() { $("html, body").animate({scrollTop:0}, 200); }); var music = document.getElementById("bgMusic"); $("#audioBtn").click(function(){ if(music.paused){ music.play(); $("#audioBtn").removeClass("pause").addClass("play"); }else{ music.pause(); $("#audioBtn").removeClass("play").addClass("pause"); } }); })(); ```