今日の人気記事

まだデータがありません。

Web上にゲーム「マインスイーパー」を「Minesweeper」 - jQueryプラグイン

当ページのリンクには広告が含まれています。

スポンサーリンク

Web上にゲーム「マインスイーパー」を実装するプラグイン「Minesweeper」を紹介します。

Minesweeper

このプラグインを使えば、Web上にあの!有名なゲームマインスイーパーを実装することができます。

マインスイーパーとは、地雷(マイン)の位置を予測しながらマスを開けていく、あのゲームです。

スポンサーリンク

デモのマインスイーパーで遊んでみてください。

「Minesweeper」のデモ

ソース(HTML + jQuery)

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Minesweeper - jQuery Plugin Demo</title>
<meta name="description" content="Minesweeperのデモでーす。">
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="js/jquery-ui-1.10.4.custom.min.js"></script>
<script src="js/masonry.min.js"></script>
<script src="js/jquery.timer.js"></script>
<script src="js/jquery.theminesweeper.min.js"></script>
<link rel="stylesheet" href="css/jquery-ui.min.css">
<link rel="stylesheet" href="css/jquery.theminesweeper.beginner.css">
</head>

<body>
<h1>Minesweeperのデモでーす。</h1>
<div id="demo"></div>

<script>
  $('#demo').theminesweeper().draggable();
</script>
</body>
</html>
スポンサーリンク

関連記事(一部広告含む)