search
HomeWeb Front-endJS TutorialWeb games (excluding online games) implemented by JavaScript technology_javascript skills

1、Mario(游戏地址:http://jsmario.com.ar/ )

00

传说中的马里奥网页版,一比一实现了红白机时代超级马里奥中所有功能 与关卡,精细程度不逊原版游戏。
依 赖库:无


2  Bunny Hunt (游戏地址: http://www.themaninblue.com/experiment/BunnyHunt/

00

猎兔,一款简单耐玩的网页狩猎游戏,没有使用第三方支持库,直接利用 css  JavasSript 实 现。  

依 赖库:无

 

3  Bomberman  游戏地址: http://www.e-forum.ro/bomberman/dynagame.html 

00

炸 弹人,经典到无以复加的桌面游戏,通过 JavaScript 获 得了完美再现。  

依 赖库: MooTools  SoundManager2 

 

4  PacMan  游戏地址: http://www.digitalinsane.com/api/yahoo/pacman/ 


 00

又 一款传说级的游戏,笔者开始怀疑有某个超级闲的家伙(或组织),开始悄悄将红白机时代的游戏统一移植为 web 版……嗯,或许近些年出现的 JavaScript  FC 模 拟器就是他们的阴谋产物……  

依 赖库: YUI

 

5  Ajax Chinese Chess (游戏地址: http://ajaxchess.pragmaticlogic.com/ 

00 

举 凡识字的中国人看到此图,就会知道这是一款基于 JavaScript 的 中国象棋游戏……  

依 赖库: MooTools  SoundManager2

 

6  Sudoku (游戏地址: http://www.dhtmlgoodies.com/scripts/game_sudoku/game_sudoku.html 

00 

疯 狂走红的数独游戏, JavaScript 狂 人们又怎么可能放过呢?(似乎所有可以进行图形显示的系统上都能跑这个游戏了……)  

依 赖库:无


 

7  Spacius (游戏地址: http://scriptnode.com/lab/spacius/ 

00

就 是著名的雷电啦,完成度相当高的经典射击游戏,效果流畅,笔者第一次运行时曾一度误以为在玩 Flash  

依 赖库: SoundManager2  

 

8  Browser Shooter  游戏地址: http://valums.com/demos/game/ 

00 


想 让 IE 干 掉 Firefox 抑 或 Chrome ? 哎,现实生活中是没希望了——不过,在该游戏中你却可以暂时做到这一点。  

依 赖库: jQuery

9  Berts Breakdown  游戏地址: http://www.paulbrunt.co.uk/bert/ 

00

又一款强悍到逆天的 JavaScript 横 版游戏,在 Chrome 下的表现已经与同类 Flash 游戏不相伯仲了。  

依 赖库: 

 

10  JS-Wars (游戏地址: http://29a.ch/jswars/ 

 00

雷 电类的横版射击游戏,似乎用 JavaScript 进 行游戏开发的家伙都很喜欢横板游戏……作者在游戏介绍里写到——你们的任务是:找出骷髅博士,并消灭他!

依 赖库: jQuery

 

11 , Javascript Wolfenstein 3D (Game address: http://www.nihilogic.dk/labs/wolf/ )

00

Created by the legendary genius JS Programmer - Jacob Seidelin (Look, his name is What is it called, knowledge...). Transplanted from the world's first first-person shooting game (controversial, one is said to be " Ultima Underworld "), which is the predecessor of "Return to Wolfenstein", "Wolfenstein" JavaScript Reprinted version.

Only from the current stage JavaScript in terms of overall performance, its level of completion is breathtaking, I am afraid even some Flash Game developers should also feel ashamed. If one day the WebGL standard becomes popular, it would not be surprising even if the author uses JavaScript to reproduce a World of Warcraft... Only Unfortunately, this game relies on JavaScript 's Canvas technology, which may have issues with IE Unfriendly...

Statement
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
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function