You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

64 lines
4.4 KiB
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!--
TerranQuest - Augmented Reality fantasy game
Copyright 2016 Netsyms Technologies
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<div id="intro-modal" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="intro-box-header">Welcome to TerranQuest!</h4>
</div>
<div class="modal-body" id="intro-box-body-1">
<!-- First page of text -->
<p>There are seven types of magic in this world. Six elements of nature: water, fire, earth, wind, light, and dark. There is also a seventh element: life. Life is the source of all magical power.</p>
<p>Long ago, the wielders of the six elements were united as one. The magics were harnessed with responsibility and respect.</p>
<p>Then disagreement and discord arose. Some become jealous of others. A great war followed, destroying much life. As a result of this bloodshed, the magic wilted and died.</p>
<p>Over time, the magic sunk deep into the Earth, living on only in dreams. Science forgot magic, and ancient knowledge was lost.</p>
<p>Now, however, the world has come full circle. Science has become magic in a different form. The new sorcerers, scientists, harness the powers of the elements with their modern tools. They know little, but the whispers of ancient power has influenced their actions.</p>
<p>The old is become new. Magic is real, it only seems different. Control the elements and bring peace to the Earth. Channel the powers of magic through your smartphone or tablet. It is up to you to give your technology a true purpose. There are those who do not want unity, who thrive in chaos. They are all the more reason to go out and fight.</p>
<p><em>Will you join the quest?</em></p>
<!-- End of first page -->
</div>
<div class="modal-body" id="intro-box-body-2" style='display: none;'>
<!-- Second page of text -->
<p>You have chosen well.</p>
<p>There is some knowledge you must have now. You must discover the rest of the secrets on your own.</p>
<ol class="list-group">
<li class="list-group-item">Some types of magic are stronger in certain types of terrain.</li>
<li class="list-group-item">Weather can also affect the flow of magic.</li>
<li class="list-group-item">There are strong points of magic near important landmarks.</li>
<li class="list-group-item">These points of magic can be controlled and enhanced by the different elements to achieve good and evil.</li>
</ol>
<!-- End of second page -->
</div>
<div class="modal-footer">
<!--<button type="button" onclick="navigator.app.exitApp();" class="btn btn-danger" id="lolnope-btn"><i class="fa fa-arrow-right"></i> I will not</button>-->
<button type="button" onclick="gotointropage2();" class="btn btn-success" id="gotopage2-btn"><i class="fa fa-arrow-right"></i> I will</button>
<button type="button" onclick="localStorage.setItem('intro', 'yes');" data-dismiss="modal" class="btn btn-default" style="display: none;" id="close-intro"><i class="fa fa-check"></i> I am ready!</button>
</div>
</div>
</div>
</div>
<script>
function gotointropage2() {
$('#intro-box-body-1').css('display', 'none');
$('#intro-box-body-2').css('display', '');
$('#gotopage2-btn').css('display', 'none');
$('#lolnope-btn').css('display', 'none');
$('#close-intro').css('display', '');
}
</script>