Example sharing jQuery to implement puzzle game

小云云
Release: 2017-12-31 16:12:47
Original
2166 people have browsed it

本文主要为大家带来一篇jQuery实现拼图小游戏(实例讲解)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧,希望能帮助到大家。

小熊维尼拼图

jQuery代码实现拼图小游戏,鼠标选中拼块,用上下左右键移动拼块。

Example sharing jQuery to implement puzzle gameExample sharing jQuery to implement puzzle gameExample sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle gameExample sharing jQuery to implement puzzle gameExample sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle gameExample sharing jQuery to implement puzzle gameExample sharing jQuery to implement puzzle game

html代码


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

Example sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle game

Example sharing jQuery to implement puzzle game

Copy after login


#box-p { 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; }
Copy after login

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) } /* 上下左右按键移动 */ $(document).keydown(function (e) { var code = e.keyCode; if (code > 40 || code < 37) { return false; } var prev = $(className)[0].previousElementSibling;//选中元素前置位元素是否存在,以此判断元素是否还可以左右移动 var next = $(className)[0].nextElementSibling;//选中元素后置位元素是否存在,以此判断元素是否还可以左右移动 var paprev = $(className).parent()[0].previousElementSibling;//选中元素父级前置位元素是否存在,以此判断元素是否还可以上下移动 var panext = $(className).parent()[0].nextElementSibling;//选中元素父级后置位元素是否存在,以此判断元素是否还可以上下移动 var index = $(className).index();//根据选中元素的索引值,来确定上下移动时对换的位置 var movenp = $(className).next()[0];//以此确定上下对换元素添加方式 var movepp = $(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 (movenp) { $(exchangeTop).insertBefore(movenp); } else { $(exchangeTop).insertAfter(movepp) } } 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 (movenp) { $(exchangeBottom).insertBefore(movenp); } else { $(exchangeBottom).insertAfter(movepp) } } else { tipsAlert(idName); } break; } }); }
Copy after login

相关推荐:

实例分享jQuery+vue.js实现的九宫格拼图游戏

用javascript实现web拼图游戏

有关拼图小游戏的文章推荐

The above is the detailed content of Example sharing jQuery to implement puzzle game. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!