Jquery學習案例

来源:https://www.cnblogs.com/2979100039-qq-con/archive/2020/04/22/12751383.html
-Advertisement-
Play Games

一,滑鼠拖拽事件 考察了滑鼠按下事件mousedown,滑鼠移動事件mousemove,滑鼠彈起事件mouseup,偏移事件offset。代碼如下 <style type="text/css"> *{ margin: 0; padding: 0; } .f_div{ width: 60px; hei ...


一,滑鼠拖拽事件

 

考察了滑鼠按下事件mousedown,滑鼠移動事件mousemove,滑鼠彈起事件mouseup,偏移事件offset。代碼如下

<style type="text/css">
          *{
              margin: 0;
              padding: 0;
          }
          .f_div{
              width: 60px;
              height: 60px;
              opacity: 0,7;
              background-color:#ffaa00;
              cursor: pointer;
              
          }
    </style>
    <script src="./js/jquery-3.4.1.js" type="text/javascript" charset="utf-8"></script>
      <body>
          <div class="f_div"></div>
          <script type="text/javascript">
              $(function(){
                /* 當滑鼠在div塊按下時觸發 */
                $(".f_div").mousedown(function(event){
                var staetX = event.pageX-$(this).offset().left;  /* 獲取滑鼠按下時的坐標 */
                var staetY = event.pageY-$(this).offset().top;
                $(this).mousemove(function(event){  /* 當滑鼠移動時 用滑鼠移動完成時的坐標減去移動前的坐標 賦值給x y*/
                var x = event.pageX - staetX;
                var y = event.pageY - staetY;
                /* 判斷x y的值防止小塊超出窗體 */
                x<0?x=0:x=x;
                y<0?y=0:y=y;
                x>$(window).width()-60?x=$(window).width()-60:x=x;
                y>$(window).height()-60?y=$(window).height()-60:y=y;
                /* if(x<0){x=0;}
                else if(x>$(window).width()-60){x=$(window).width()-60;}
                if(y<0){y=0;}
                else if(y>$(window).height()-60){y=$(window).height()-60;} */
                $(this).offset({left:x,top:y});/* 將 x y 的值給div使其產生偏移達到移動效果 */
                });
                }).mouseup(function(){  //當滑鼠彈起時移除事件
                $(this).off("mousemove");
                });
            });
          </script>
       </body>

二、鍵盤事件,移動的小球 

考察,鍵盤事件,對offset事件的理解

<style type="text/css">
            *{
                margin: 0;
                padding: 0;
            }
            .f_div{
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background-color: red;
            }
        </style>
    </head>
    <body>
        <div class="f_div">
        </div>
        <script src="./js/jquery-3.4.1.js" type="text/javascript" charset="utf-8"></script>
        <script type="text/javascript">
            $(function(){
                var speed = 10;  /* 設置每次移動的值為10 */
                $(window).keydown(function (event){    //鍵盤點擊事件
                    var x = $(".f_div").offset().left;  //獲取小球的初始坐標值
                    var y = $(".f_div").offset().top;
                    var w = $(this).width();           //小球寬度
                    var h = $(this).height();          //小球高度
                    
                    /* switch判斷按下的鍵37 38 39 40 代表上下左右*/
                    switch(event.which){
                        //
                        case 37:
                            $(".f_div").offset({left:Math.max(0,x - speed)});
                        break;
                        //
                        case 38:
                            $(".f_div").offset({top:Math.max(0,y - speed)});
                        break;
                        //
                        case 39:
                            $(".f_div").offset({left:Math.min(w-50,x + speed)});
                        break;
                        //
                        case 40:
                            $(".f_div").offset({top:Math.min(h-50,y + speed)});
                        break;
                    }
                });
            });
        </script>
    </body>

三、類似淘寶圖片放大案例

 

 

<style type="text/css">
            *{
                margin: 0;
                padding: 0;
            }
            .f_div{
                position: relative;
            }
            .minIMG{
                width: 100px;
                height: 100px;
            }
            .minIMG img{
                width: 100px;
                height: 100px;
            }
            .bigIMG{
                width: 100px;
                height: 100px;
                display: none;
                overflow: hidden;
            }
            .bigIMG img{
                width: 300px;
                height: 300px;
            }
            .zoom{
                width: 30px;
                height: 30px;
                border-radius: 50%;
                background-color: #00ffff;
                position: absolute;
                top: 0;
                opacity: 0.6;
                cursor: all-scroll;
                display: none;
            }
        </style>
        <script src="./js/jquery-3.4.1.js" type="text/javascript" charset="utf-8"></script>
    </head>
    <body>
        <div class="f_div">
            <div class="minIMG">
                <img src="./img/a1.jpg" >
                <div class="zoom"></div>
            </div>
            <div class="bigIMG">
                <img src="./img/a1.jpg" >
            </div>
        </div>
        <script type="text/javascript">
            $(function(){
                $(".minIMG").mouseenter(function(){
                    var minIMG = $(this);
                    var w = minIMG.width();
                    var h = minIMG.height();
                    var l = minIMG.offset().left;
                    var t = minIMG.offset().top;
                    $(".zoom").show();
                    $(".bigIMG").show().offset({left:(w+l),top:t});
                    $(this).mousemove(function(e){
                        var x = e.pageX-l
                        var y = e.pageY-t;
                        $(".bigIMG").scrollLeft(x*3);
                        $(".bigIMG").scrollTop(y*3);
                        var zx = (x-$('.zoom').width()/2);
                        var zy = (y-$('.zoom').height()/2);
                        zx = zx>l?zx:l;
                        zy = zy>t?zy:t;
                        zx=zx>(l+w-$('.zoom').width())?l+w-$('.zoom').width():zx;
                        zy=zy>(l+h-$('.zoom').height())?l+h-$('.zoom').height():zy;
                        $(".zoom").offset({left:zx,top:zy});
                    });
                }).mouseleave(function(){
                    $(".bigIMG").hide();
                    $(".zoom").hide();
                });
            });
        </script>
    </body>

四、輪播圖案例(和上次的很類似但這次的比較好)

 

<style type="text/css">
            *{margin: 0;padding: 0;}
            img{width: 1052px; height: 428px;}
            span{width: 30px; height: 50px; background: url(img/icon-slides.png);}
            .div1{position: relative;width: 1053px;margin:auto;}
            li {list-style: none; cursor: pointer;}
            .f_ul li{
                position:absolute;
                width: 1053px;
                display: none;
            }
            .f_ul .select{display: block;}
            .s_ul{
                position: absolute;
                bottom:-410px;
                left: 480px;
            }
            .s_ul li{width: 8px; height: 8px; background-color: #080808; border-radius: 50%;float: left;margin: 0 3px;}
            .s_ul .on_color{background-color: aliceblue;}
            .arrows img{width: 25px; height: 54px;position: relative;background-color: #080808;opacity: 0.7;top: 181px;z-index:1;position: absolute; display: none; }
            .arrows1 img{transform: rotate(180deg);}
            .arrows2 img{left: 1028px;}
        </style>
    </head>
    <body>
        <div class="div1">
                <li><a href="#" class="arrows arrows1"><img src="img/arrow.png" ></a></li>
            <ul class="f_ul">
                <li 
              
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 先從一個例子分析 <template> <div> <p>source array:{{numbers}}</p> <p>sorted array:{{sortArray()}}</p> <p>3 in array index : {{findIndex(3)}}</p> <p>totalNumbe ...
  • 根據 jquery官網api文檔編寫 https://www.jq22.com/chm/jquery/index.html 一、基本效果 關於以下屬性中的 easing 想要更好的去瞭解這個屬性 https://www.runoob.com/jqueryui/api-easings.html 我想這 ...
  • 摘要 當在判斷當前客戶端是什麼類型時,我們就可以根據客戶端自帶的UA標識,搭配正則判斷機制來判斷當前的客戶端是什麼設備。今天就分享下如何通過Javascript來獲取客戶端的UA標識,並判斷客戶端類型。 內容 一、判斷手機端是什麼類型設備: const u = navigator.userAgent ...
  • 第一步 (添加後臺刪除地址) 打開 ueditor/net/config.json 添加參數 /* 上傳圖片配置項 */ 'imageDelUrl' : '/Admin/Home/DelPic', //線上圖片管理刪除操作請求url //這一行是添加的 "imageActionName": "upl ...
  • 作者:凹凸曼 Manjiz Atom 是什麼?Atom 是集結業內各色資深電商行業設計師,提供一站式專業智能頁面和小程式設計服務的平臺。經過 2 年緊湊迭代,項目越來越龐大,需求不斷變更優化,內部邏輯錯綜複雜,維護成本急劇拉升。同時,Atom 將要承載的業務越來越多,要向更多的內部用戶和商家提供服務 ...
  • 使用hugo這個插件進行hugo博客的搭建,採用zzo的博客主題,基於github以及其action搭建一個靜態博客! ...
  • JavaScript獲取當前時間: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0" ...
  • 京東服務覆蓋 10 億多用戶和超過 27 萬第三方商家。如何連接京東和商家生態體系,給 C 端消費者提供全鏈路一站式的優質服務體驗,是京東高度關註的問題。 因此京東小程式開放平臺作為京東戰略項目應運而生,4 月 22 號正式對外發佈,致力於給消費者帶來 新服務、新體驗。 京東小程式平臺不僅支持存量自 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...