diff --git a/yuto/entrance/entrance.html b/yuto/entrance/entrance.html new file mode 100644 index 0000000..ee21d42 --- /dev/null +++ b/yuto/entrance/entrance.html @@ -0,0 +1,62 @@ + + + +庄内AR謎解きゲーム(仮) + + + + + +

庄内AR謎解きゲーム(仮)

+

「謎解きって何?」「脱出ゲームとは?」という方に向けて、お試し謎を作 +成したのでぜひ解いてみてください!

+

※解答はひらがなで入力すること。

+ +
+

謎1

+謎1
+ + +
+ +
+

謎2

+謎2
+ + +
+ +
+

謎3

+謎3
+ + +
+ +
+

謎4

+謎4
+ + +
+ +
+

謎5

+謎5
+ + +
+ +
+

EXTRA

+EXTRA
+ + +
+ +

+
+

具体的説明はこちら

+ + + diff --git a/yuto/entrance/escape.css b/yuto/entrance/escape.css new file mode 100644 index 0000000..ae743ff --- /dev/null +++ b/yuto/entrance/escape.css @@ -0,0 +1,43 @@ +body { + background-color: #f0e68c; +} + +h1+p, h2+p, h3+p, p+p, p.new { + text-indent: 1em; +} + +h1 { + box-shadow: #ffd700 4px 2px 4px 5px; + color: white; background: #ffa500; + width: 60%; margin: auto; + text-align: center; + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +h2 { + background: #dcdcdc; + padding: 5px; + border-left: solid 10px gray; + border-bottom: solid 3px gray +} + +p.ok { + color: red; + font-size: 300%; + text-indent: 0em; + text-align: center; + text-shadow: #ffc0cb 0 -2px, #ffc0cb 0 2px, #ffc0cb 2px 0, #ffc0cb -2px 0; + font-weight: bold; + margin: 2em 0em; +} + +p.ng { + color: blue; + font-size: 300%; + text-indent: 0em; + text-align: center; + text-shadow: #87ceeb 0 -2px, #87ceeb 0 2px, #87ceeb 2px 0, #87ceeb -2px 0; + font-weight: bold; + margin: 2em 0em; +} diff --git a/yuto/entrance/explain.html b/yuto/entrance/explain.html new file mode 100644 index 0000000..b2dd7e4 --- /dev/null +++ b/yuto/entrance/explain.html @@ -0,0 +1,44 @@ + + + +具体的説明|庄内AR謎解きゲーム(仮) + + + + +

庄内AR謎解きゲーム(仮)

+ +

概要

+

謎を解いたりARを使ったりしながら、庄内の自然や食、文化などについて楽しく学ぶことができるゲーム。

+ +

背景

+

小学生の頃から謎解きが好きでよくオンラインのものには参加してきたが、山形で脱出ゲームのようなイベント開催はほとんどなかったため、実際に問題を作成してみたかったから。また、コロナ対応オンライン・インターンシップで清水屋の跡地の活用方法について考えた際、担当の方が「リアル脱出ゲーム」の話をしており、他の施設でも役立てられそうだと思ったから。

+ +

ARの活用案

+ + +

課題

+ + +

メモ

+ + +
+

チーム内課題の3Dモデルです。鍵を作成してみました。

+鍵 + +
+

トップページへ戻る

+ + + diff --git a/yuto/entrance/judge.rb b/yuto/entrance/judge.rb new file mode 100755 index 0000000..f6d7670 --- /dev/null +++ b/yuto/entrance/judge.rb @@ -0,0 +1,36 @@ +#!/usr/bin/env ruby +# coding: utf-8 + +require 'cgi' +c = CGI.new(:accept_charset => "UTF-8") +print "Content-type: text/html; charset=UTF-8\n\n" + +ans1 = c["ans1"] +ans2 = c["ans2"] +ans3 = c["ans3"] +ans4 = c["ans4"] +ans5 = c["ans5"] +ans6 = c["ans6"] + +print " + + + 結果|庄内AR謎解きゲーム(仮) + + + + +

庄内AR謎解きゲーム(仮)

\n\n" + +if ans1 == "さかた" || ans2 == "しょうない" || ans3 == "つるおか" || ans4 == "ゆざ" || ans5 == "みかわ" || ans6 == "いもに" + print "

正解!!

\n" +else + print "

不正解…

\n" +end + +print "
+

トップページへ戻る

" + +print " + +"