91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • WEB中如何實現頁面右側浮動固定層返回頂部按鈕帶二維碼展示功能

WEB中如何實現頁面右側浮動固定層返回頂部按鈕帶二維碼展示功能

發布時間:2021-09-28 14:09:42 來源:億速云 閱讀:181 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關WEB中如何實現頁面右側浮動固定層返回頂部按鈕帶二維碼展示功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

HTML

首先我們準備右側浮動層的內容,工具條有上下箭頭按鈕,然后一個“反饋”鏈接,點擊可以到網站的反饋信息頁面,還有一個二維碼按鈕,鼠標滑上時會彈出一個二維碼圖片,那么我們使用.popPanel來放置二維碼圖片,.arrowPanel是用來做箭頭方向的。在本例中,我使用了一張背景圖作為工具條,當然實際應用中我們還可以根據實際需求加多個功能按鈕。

#floatPanel .ctrolPanel{width:36px;height:166px;background:#fff url(panel_bg.gif) no-repeat left top;border:solid 1px #ddd;position:fixed;right:25px;top:300px;overflow:hidden;z-index:10000;} #floatPanel .ctrolPanel a{width:34px;font-size:12px;color:#ff6600;letter-spacing:1px;text-align:center;overflow:hidden;} #floatPanel .ctrolPanel .arrow{height:29px;line-height:28px;display:block;margin:1px auto;} #floatPanel .ctrolPanel .arrow span{display:none;} #floatPanel .ctrolPanel .arrow:hover{background:#f4f4f4;} #floatPanel .ctrolPanel .arrow:hover span{display:block;} #floatPanel .ctrolPanel .contact{height:60px;display:block;margin:2px auto;} #floatPanel .ctrolPanel .contact span{line-height:90px;} #floatPanel .ctrolPanel .qrcode{height:40px;display:block;margin:2px auto;} #floatPanel .ctrolPanel .qrcode span{display:none;} .popPanel{width:205px;height:214px; position:fixed;right:90px;top:300px;z-index:10000;overflow:hidden;display:none; } .popPanel-inner{width:205px;height:220px;position:relative;overflow:hidden;} .arrowPanel{width:10px;height:210px;position:absolute;right:1px;top:102px;} .arrowPanel .arrow01{width:0;height:0;font-size:0;line-height:0;border-top:10px solid transparent;_border-top:10px solid black;_filter:chroma(color=black);border-right:10px solid transparent;_border-right:10px solid black;_filter:chroma(color=black);border-bottom:10px solid transparent;_border-bottom:10px solid black;_filter:chroma(color=black);border-left:10px solid #ddd;position:absolute;bottom:0;position:absolute;left:2px;top:0;} .arrowPanel .arrow02{width:0;height:0;font-size:0;line-height:0;border-top:10px solid transparent;_border-top:10px solid black;_filter:chroma(color=black);border-right:10px solid transparent;_border-right:10px solid black;_filter:chroma(color=black);border-bottom:10px solid transparent;_border-bottom:10px solid black;_filter:chroma(color=black);border-left:10px solid #fff;position:absolute;bottom:0;position:absolute;left:0;top:0;} .qrcodePanel{width:194px; height:212px; background:#fff;text-align:center;border:solid 1px #ddd;position:absolute;left:0;top:0;overflow:hidden;} .qrcodePanel img{width:174px;height:174px;border:none;padding:5px 5px 0px 5px;} .qrcodePanel p{font-size:12px;color:#666;line-height:20px;letter-spacing:1px;}

jQuery

本實例基于jQuery,因此必須先載入jQuery庫,你可以使用360的前端CDN加載jQuery庫文件。

<script src="http://libs.useso.com/js/jquery/1.7.2/jquery.min.js"></script>

當點擊向上箭頭.arrow時,設置動畫,頁面滾動到頁頭,當點擊向下箭頭.arrow時,頁面滾動到頁底,當中使用了scrollTop,當scrollTop的值為0時表示到頁頭,為頁面總高度時則表示到頁底。然后當鼠標滑上移動終端圖標時,會向左彈出一個二維碼圖案,也是使用動畫函數animate()設置寬度變化達到彈出展示效果,請看詳細代碼:

$(function(){ $("#floatPanel a.arrow").eq(0).click(function(){ $("html,body").animate({scrollTop :0}, 300); return false; }); $("#floatPanel a.arrow").eq(1).click(function(){ $("html,body").animate({scrollTop : $(document).height()}, 300); return false; }); var panel = $(".popPanel"); var w = panel.outerWidth(); $(".qrcode").hover(function(){ panel.css("width","0px").show(); panel.animate({"width" : w + "px"},300); },function(){ panel.animate({"width" : "0px"},300); }); });

關于“WEB中如何實現頁面右側浮動固定層返回頂部按鈕帶二維碼展示功能”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

web
AI

龙南县| 阿城市| 石阡县| 凤凰县| 凤山县| 乐至县| 襄樊市| 大同市| 新兴县| 白山市| 洪雅县| 新蔡县| 江孜县| 福鼎市| 昆明市| 尚义县| 长沙县| 攀枝花市| 新民市| 青州市| 淳化县| 中阳县| 银川市| 大兴区| 建湖县| 衡阳市| 长岛县| 年辖:市辖区| 临高县| 公安县| 分宜县| 余干县| 兴化市| 墨玉县| 新龙县| 昌图县| 东兰县| 肃宁县| 舞阳县| 沿河| 洪泽县|