jQuery實(shí)現(xiàn)懸浮在右上角的網(wǎng)頁客服效果代碼
本文實(shí)例講述了jQuery實(shí)現(xiàn)懸浮在右上角的網(wǎng)頁客服效果代碼。分享給大家供大家參考,具體如下:
這是款網(wǎng)頁在線客服代碼,應(yīng)用了jquery插件,兼容性不錯(cuò)。默認(rèn)狀態(tài)下,客服只顯示一個(gè)圖片Button,用鼠標(biāo)點(diǎn)擊時(shí)展開全部內(nèi)容,可用作QQ客服,售后客服等,可以作為網(wǎng)站快速通道,方便用戶進(jìn)行相應(yīng)的操作。
運(yùn)行效果截圖如下:
在線演示地址如下:
http://demo.jb51.net/js/2015/jquery-right-top-wen-online-demo/
具體代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <style type="text/css"> .demo_menu{font-size: 14px;text-align: center;margin: 10px 0 0 0;color: #999;line-height: 180%;} .demo_menu b{color: #333;} .demo_menu a, .demo_menu a: visited{color: #F00;font-size: 14px;} .demo_menu a: hover{color: #090;font-size: 14px;} body{background: #ccc;} .text{font-size: 12px;} #kefu{position: fixed;_position: absolute;_top: expression(documentElement.scrollTop + 20 + "px");top: 20px;right: 0;z-index: 999} #kefu .box-content{position: relative;background-color: #fff;width: 170px;} #kefu .title-btn, #kefu .qq, #kefu .phone, #kefu .service, #kefu .on span{background: url(images/kefu.png) no-repeat} #kefu .title-btn{width: 33px;height: 97px;position: absolute;top: 0;left: -33px;} #kefu .title-btn span{display: none} #kefu .on span{background-position: -129px 7px;height: 16px;display: block;} #kefu .pad{padding: 16px 10px 10px;overflow: hidden;font-size: 12px;} #kefu .pad a{text-decoration: none;} #kefu .qq{background-position: 0 -118px;display: inline-block;zoom: 1;*display: inline;padding-left: 16px;} #kefu .phone{height: 28px;background-position: 0 -153px;margin: 18px 0} #kefu .service{display: inline-block;zoom: 1;*display: inline;height: 51px;background-position: 0 -203px;width: 151px;margin-left: 3px} #kefu .text{background-color: #ededed;padding: 5px 10px;text-align: center} #kefu .off{width: 0;} #kefu .off .pad, #kefu .off .text{display: none} p, p a{font-size: 12px;color: #666;} </style> <title>始終固定在網(wǎng)頁右上角的在線客服QQ代碼</title> <meta http-equiv="X-UA-Compatible" content="IE=7"> <script src="jquery-1.6.2.min.js" type="text/javascript"></script> </head> <body> <div id="kefu"> <div class="box-content off"> <div class="title-btn cu"><span><a href="#"></a></span></div> <div class="pad"> <a class="qq" style="margin-right:16px">售前咨詢</a><a class="qq">廣告-合作</a> <div class="phone"></div> <a href="#" class="service" target="_blank"></a> </div> <div class="text"> 客服時(shí)間:(9:00-18:00)<br> (周六日休息) </div> </div> </div> <script type="text/javascript"> $(".select").hover( function () { $(this).find(".msgNav").show(); }, function () { $(this).find(".msgNav").hide(); } ); $(".title-btn").toggle( function () { $(this).addClass("on"); $(this).parent(".box-content").removeClass("off"); }, function () { $(this).removeClass("on"); $(this).parent(".box-content").addClass("off"); } ); </script> </body> </html>
希望本文所述對大家jQuery程序設(shè)計(jì)有所幫助。
- jquery鼠標(biāo)放上去顯示懸浮層即彈出定位的div層
- jquery實(shí)現(xiàn)的可隱藏重現(xiàn)的靠邊懸浮層實(shí)例代碼
- 使用jQuery UI的tooltip函數(shù)修飾title屬性的氣泡懸浮框
- 自定義一個(gè)jquery插件[鼠標(biāo)懸浮時(shí)候 出現(xiàn)說明label]
- jquery實(shí)現(xiàn)鼠標(biāo)懸浮停止輪播特效
- jquery懸浮提示框完整實(shí)例
- 鼠標(biāo)懸浮顯示二級菜單效果的jquery實(shí)現(xiàn)
- jQuery簡單實(shí)現(xiàn)頁面元素置頂時(shí)懸浮效果示例
- jQuery鼠標(biāo)懸浮鏈接彈出跟隨圖片實(shí)例代碼
- jQuery實(shí)現(xiàn)的簡單懸浮層功能完整實(shí)例
相關(guān)文章
jquery ajax,ashx,json的用法總結(jié)
本篇文章主要是對jquery ajax,ashx,json的用法進(jìn)行了詳細(xì)的總結(jié)介紹,需要的朋友可以過來參考下,希望對大家有所幫助2014-02-02jquery實(shí)現(xiàn)點(diǎn)擊彈出帶標(biāo)題欄的彈出層(從右上角飛入)效果
這篇文章主要介紹了jquery實(shí)現(xiàn)點(diǎn)擊彈出帶標(biāo)題欄的彈出層(從右上角飛入)效果,涉及jQuery響應(yīng)鼠標(biāo)事件操作頁面元素動(dòng)畫效果的實(shí)現(xiàn)技巧,需要的朋友可以參考下2015-09-09基于jQuery實(shí)現(xiàn)的打字機(jī)效果
本文主要分享了基于jQuery實(shí)現(xiàn)的打字機(jī)效果的示例代碼。具有一定的參考價(jià)值,下面跟著小編一起來看下吧2017-01-01解決用jquery load加載頁面到div時(shí),不執(zhí)行頁面js的問題
這篇文章主要介紹了解決用jquery load加載頁面到div時(shí),不執(zhí)行頁面js的問題。需要的朋友可以過來參考下,希望對大家有所幫助2014-02-02jQuery html()方法使用不了無法顯示內(nèi)容的問題
jquery中的html方法使用不了,只能用完最基本的innerHTML把內(nèi)容展示出來2014-08-08jQuery中JSONP的兩種實(shí)現(xiàn)方式詳解
這篇文章主要介紹了jQuery中JSONP的兩種實(shí)現(xiàn)方式詳解的相關(guān)資料,需要的朋友可以參考下2016-09-09jQuery 選擇同時(shí)包含兩個(gè)class的元素的實(shí)現(xiàn)方法
下面小編就為大家?guī)硪黄猨Query 選擇同時(shí)包含兩個(gè)class的元素的實(shí)現(xiàn)方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2016-06-06jQuery動(dòng)態(tài)添加 input type=file的實(shí)現(xiàn)代碼
有時(shí)候需要在頁面上允許用戶上傳多個(gè)文件,個(gè)數(shù)由用戶自己決定,個(gè)數(shù)多了也可以刪除,使用jQuery可以很簡單的實(shí)現(xiàn)這個(gè)功能2012-06-06jQuery實(shí)現(xiàn)產(chǎn)品對比功能附源碼下載
一些電商網(wǎng)站產(chǎn)品或評測網(wǎng)站會(huì)為用戶提供產(chǎn)品對比的功能,用戶只需勾選多個(gè)需要對比的產(chǎn)品,就可以進(jìn)行比對,下文給大家?guī)砹薺Query實(shí)現(xiàn)產(chǎn)品對比功能,一起看下吧2016-08-08