最新下載
夢幻水族館
少女前線
星之翼
小花仙精靈樂園
餐廳萌物語
山河旅探
戀與製作人
最強腦3
異塵:達米拉
少年西遊記2
24小時閱讀排行榜
- 1 如何在可調整大小的文字元素中實現省略號截斷?
- 2 diskmsg.dll - 什麼是 diskmsg.dll?
- 3 dialupmanager.dll - 什麼是 dialupmanager.dll?
- 4 diagrpt.dll - 什麼是 diagrpt.dll?
- 5 為什麼具有緩入緩出功能的 CSS 過渡在懸停時表現平穩,但在滑鼠移開時表現突然?
- 6 dicrhash.dll - 什麼是 dicrhash.dll?
- 7 Spring中如何將依賴注入到自實例化物件中?
- 8 為什麼 PHP 在新增和連接整數時會回顯「2」?
- 9 為什麼我的 Java 應用程式使用 GMT 而不是作業系統時區,如何修復它?
- 10 如何在 Java 中有效 Ping HTTP URL:綜合指南
- 11 為什麼我的`std::fstream`創建檔案失敗?
- 12 如何使用「class」屬性綁定到 UI5 XML 視圖中的 CSS 類別?
- 13 為什麼局部變數的緊急恢復不會改變 Go 中的回傳值?
- 14 digiconf.dll - 什麼是 digiconf.dll?
- 15 如何從現有的 PHP 類別產生 UML 圖?
最新教學
-
- 國外Web開發全端課程全集
- 1650 2024-04-24
-
- Go語言實戰之 GraphQL
- 1923 2024-04-19
-
- 550W粉絲大佬手把手從零學JavaScript
- 3343 2024-04-18
-
- python大神Mosh,零基礎小白6小時完全入門
- 2877 2024-04-10
-
- MySQL 初學入門(mosh老師)
- 1752 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--十天精品課堂
- 2563 2024-03-29
基於jquery.1.11.1.min.js製作的簡潔jQuery右側欄客服代碼,有微信二維碼、QQ、電話顯示及返回頂部功能,網頁右側懸浮層,滑鼠移動上去有效果。
js程式碼
<script type="text/javascript">
$(function() {
$("#service a").hover(function() {
if ($(this).prop("className") == "weixin_area") {
$(this).children("img.hides").show();
} else {
$(this).children("div.hides").show();
$(this).children("img.shows").hide();
$(this).children("div.hides").animate({marginRight: '0px'}, '0');
}
}, function() {
if ($(this).prop("className") == "weixin_area") {
$(this).children("img.hides").hide();
} else {
$(this).children("div.hides").animate({marginRight: '-163px'}, 0, function() {
$(this).hide();
$(this).next("img.shows").show();
});
}
});
$("#top_btn").click(function() {
$("html,body").animate({scrollTop: 0}, 600);
});
//右侧导航 - 二维码
$(".weixin_area").hover(function() {
$(this).children(".weixin").show();
},function(){
$(this).children(".weixin").hide();
})
});
</script>