真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

jQuery如何實(shí)現(xiàn)拼圖小游戲

這篇文章給大家分享的是有關(guān)jQuery如何實(shí)現(xiàn)拼圖小游戲的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比磴口網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式磴口網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋磴口地區(qū)。費(fèi)用合理售后完善,10年實(shí)體公司更值得信賴。

小熊維尼拼圖

jQuery代碼實(shí)現(xiàn)拼圖小游戲,鼠標(biāo)選中拼塊,用上下左右鍵移動(dòng)拼塊。

jQuery如何實(shí)現(xiàn)拼圖小游戲jQuery如何實(shí)現(xiàn)拼圖小游戲jQuery如何實(shí)現(xiàn)拼圖小游戲

jQuery如何實(shí)現(xiàn)拼圖小游戲jQuery如何實(shí)現(xiàn)拼圖小游戲jQuery如何實(shí)現(xiàn)拼圖小游戲

jQuery如何實(shí)現(xiàn)拼圖小游戲jQuery如何實(shí)現(xiàn)拼圖小游戲jQuery如何實(shí)現(xiàn)拼圖小游戲

html代碼


  
  
    

\(╯-╰)/ 哎呦,走不通啦!

  
              
      
                                                                            
#box-div {
  position: relative;
  width: 508px;
  height: 631px;
  margin: 0 auto;
}

#container {
  width: 508px;
  height: 631px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #d5e0e6;
}

#container > .row {
  display: -webkit-box;
  white-space: nowrap;
}

#container > .row > .unit {
  width: 169px;
  height: 209px;
  display: inline-block\9;/*兼容IE9/10*/
  vertical-align: top\9;/*兼容IE9/10*/
  box-sizing: border-box;
  border: 1px solid rgba(7, 157, 239, 0);
}

#container > .row > .unit.move {
  border: 1px solid rgba(7, 157, 239, 1);
}

#tips {
  width: 200px;
  height: 50px;
  background: rgb(152, 206, 50);
  position: absolute;
  z-index: 5;
  top: -50px;
  left: calc(50% - 100px);
  opacity: 0;
}

#tips > p {
  margin: 0;
  line-height: 50px;
  text-align: center;
  color: white;
}
.directions{
  width:50%;
  margin:0 auto;
  text-align: center;
  line-height: 30px;
  color: white;
  background-color: #a7cbf0;
}

jquery代碼

$("#container>.row>.unit>img").each(function () {
  $(this).click(function (event) {
    event.stopPropagation();
    $(".unit").removeClass("move");
    $(this).parent(".unit").addClass("move");
  })
});
move(".move","#tips");
function move(className,idName) {
  /* 提示信息 */
  function tipsAlert(idName) {
    $(idName).animate({top: "0", opacity: "1"}, 500);
    setTimeout(function () {
      $(idName).animate({top: "-50px", opacity: "0"}, 800);
    }, 1000)
  }
  /* 上下左右按鍵移動(dòng) */
  $(document).keydown(function (e) {
    var code = e.keyCode;
    if (code > 40 || code < 37) {
      return false;
    }
    var prev = $(className)[0].previousElementSibling;//選中元素前置位元素是否存在,以此判斷元素是否還可以左右移動(dòng)
    var next = $(className)[0].nextElementSibling;//選中元素后置位元素是否存在,以此判斷元素是否還可以左右移動(dòng)
    var paprev = $(className).parent()[0].previousElementSibling;//選中元素父級前置位元素是否存在,以此判斷元素是否還可以上下移動(dòng)
    var panext = $(className).parent()[0].nextElementSibling;//選中元素父級后置位元素是否存在,以此判斷元素是否還可以上下移動(dòng)
    var index = $(className).index();//根據(jù)選中元素的索引值,來確定上下移動(dòng)時(shí)對換的位置
    var movenDiv = $(className).next()[0];//以此確定上下對換元素添加方式
    var movepDiv = $(className).prev()[0];//以此確定上下對換元素添加方式
    switch (code) {
      case 37://左
        if (prev) {
          $(className).insertBefore(prev);
        } else {
          tipsAlert(idName);
        }
        break;
      case 38://上
        if (paprev) {
          var exchangeTop = $(paprev).children()[index];
          $(className).insertBefore(exchangeTop);
          if (movenDiv) {
            $(exchangeTop).insertBefore(movenDiv);
          } else {
            $(exchangeTop).insertAfter(movepDiv)
          }

        } else {
          tipsAlert(idName);
        }
        break;
      case 39://右
        if (next) {
          $(className).insertAfter(next);
        } else {
          tipsAlert(idName)
        }
        break;
      case 40://下
        if (panext) {
          var exchangeBottom = $(panext).children()[index];
          $(className).insertBefore(exchangeBottom);
          if (movenDiv) {
            $(exchangeBottom).insertBefore(movenDiv);
          } else {
            $(exchangeBottom).insertAfter(movepDiv)
          }
        } else {
          tipsAlert(idName);
        }
        break;

    }
  });


}

感謝各位的閱讀!關(guān)于“jQuery如何實(shí)現(xiàn)拼圖小游戲”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


新聞名稱:jQuery如何實(shí)現(xiàn)拼圖小游戲
分享地址:http://weahome.cn/article/pjeohh.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部