Files
openlayers/master/examples/test_bookmarkable.html
Éric Lemoine 5d14b9e2d4 Updated
2013-02-20 10:38:25 +01:00

112 lines
4.4 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Bookmarkable</title>
<link href="../themes/iphone/base.css" rel="stylesheet">
<style>
.lnk {
font-size: 14px;
color: #0B5199;
text-decoration: none;
}
</style>
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="parseOnLoad: true"></script>
<script language="JavaScript" type="text/javascript">
dojo.require("dojo.hash");
dojo.require("dojox.mobile"); // This is a mobile app.
dojo.require("dojox.mobile.parser"); // This mobile app supports running on desktop browsers
dojo.require("dojox.mobile.compat"); // This mobile app uses declarative programming with fast mobile parser
</script>
</head>
<body style="visibility:hidden;">
<div id="home" dojoType="dojox.mobile.View" selected="true">
<h1 dojoType="dojox.mobile.Heading">Bookmarkable</h1>
<h2 dojoType="dojox.mobile.RoundRectCategory">Transition Effects</h2>
<ul dojoType="dojox.mobile.RoundRectList">
<li dojoType="dojox.mobile.ListItem" icon="images/i-icon-1.png" moveTo="#page1" transition="slide">
Slide
</li>
<li dojoType="dojox.mobile.ListItem" icon="images/i-icon-2.png" moveTo="#page2" transition="flip">
Flip
</li>
<li dojoType="dojox.mobile.ListItem" icon="images/i-icon-3.png" moveTo="#page3" transition="fade">
Fade
</li>
</ul>
<div dojoType="dojox.mobile.RoundRect">
After you move to other views, you should also be able to navigate through the views with browser's back and forward buttons. Also, views should be bookmarkable.
</div>
</div>
<div id="page1" dojoType="dojox.mobile.View">
<h1 dojoType="dojox.mobile.Heading" back="Home" moveTo="#home" transition="slide">Page 1</h1>
<ul dojoType="dojox.mobile.RoundRectList">
<li dojoType="dojox.mobile.ListItem" icon="images/i-icon-1.png" moveTo="#result1">
Item 1
</li>
</ul>
</div>
<div id="page2" dojoType="dojox.mobile.View">
<h1 dojoType="dojox.mobile.Heading" back="Home" moveTo="#home" transition="flip">Page 2</h1>
<ul dojoType="dojox.mobile.RoundRectList">
<li dojoType="dojox.mobile.ListItem" icon="images/i-icon-2.png" moveTo="#result2">
Item 2
</li>
</ul>
</div>
<div id="page3" dojoType="dojox.mobile.View">
<h1 dojoType="dojox.mobile.Heading" back="Home" moveTo="#home" transition="fade">Page 3</h1>
<ul dojoType="dojox.mobile.RoundRectList">
<li dojoType="dojox.mobile.ListItem" icon="images/i-icon-3.png" moveTo="#result3">
Item 3
</li>
</ul>
</div>
<div id="result1" dojoType="dojox.mobile.View">
<h1 dojoType="dojox.mobile.Heading" back="Page 1" moveTo="#page1">Search Result 1</h1>
<ul dojoType="dojox.mobile.RoundRectList">
<li class="mblVariableHeight" dojoType="dojox.mobile.ListItem" style="font-size:10px">
1. <a href="#" class="lnk">Dojo: Traditional Karate-do Spirit</a><br>
Sarah Connor Hardcover<br>
Eligible for FREE Super Saver Shipping<br>
<font color="red">$14.50 (50%)</font> In Stock<br>
# (531)
</li>
</ul>
</div>
<div id="result2" dojoType="dojox.mobile.View">
<h1 dojoType="dojox.mobile.Heading" back="Page 2" moveTo="#page2">Search Result 2</h1>
<ul dojoType="dojox.mobile.RoundRectList">
<li class="mblVariableHeight" dojoType="dojox.mobile.ListItem" style="font-size:10px">
2. <a href="#" class="lnk">Japanese Martial Arts Dojo</a><br>
Martin Parker Hardcover<br>
<font color="red">$14.00 (60%)</font> In Stock<br>
# (173)
</li>
</ul>
</div>
<div id="result3" dojoType="dojox.mobile.View">
<h1 dojoType="dojox.mobile.Heading" back="Page 3" moveTo="#page3">Search Result 3</h1>
<ul dojoType="dojox.mobile.RoundRectList">
<li class="mblVariableHeight" dojoType="dojox.mobile.ListItem" style="font-size:10px">
3. <a href="#" class="lnk">Total Solar Eclipse</a><br>
Steven Young Hardcover<br>
Get it by Mar. 2 if you order in the next <font color="green"><b>16 hours</b></font><br>
Eligible for FREE Super Saver Shipping<br>
<font color="red">$9.50 (62%)</font> In Stock<br>
# (1199)
</li>
</ul>
</div>
</body>
</html>