This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
120 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,143 +1,127 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | ||
<meta name="viewport" content="target-densitydpi=high-dpi, user-scalable=no" /> | ||
<title>Cordova Sample</title> | ||
<link href="osp://webapp/css/style.css" rel="stylesheet" type="text/css" /> | ||
<script type="text/javascript" src="./js/cordova.bada.js"></script> | ||
<style type="text/css"> | ||
button.btn { | ||
color:#050; | ||
font: bold 24px 'trebuchet ms',helvetica,sans-serif; | ||
background-color:#fed; | ||
width: 400px; | ||
height: 100px; | ||
border: 1px solid; | ||
border-color: #696 #363 #363 #696; | ||
/* filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr='#ffffffff',EndColorStr='#ffeeddaa'); */ | ||
} | ||
|
||
button.btn2 { | ||
color:#050; | ||
font: bold 24px 'trebuchet ms',helvetica,sans-serif; | ||
background-color:#fed; | ||
width: 200px; | ||
height: 100px; | ||
border: 1px solid; | ||
border-color: #696 #363 #363 #696; | ||
/* filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr='#ffffffff',EndColorStr='#ffeeddaa'); */ | ||
} | ||
</style> | ||
<script type="text/javascript" src="osp://webapp/js/webapp_core.js"> </script> | ||
<script type="text/javascript" src="osp://webapp/js/webapp_ui.js"> </script> | ||
<script> | ||
/* | ||
Osp.App.Application.addEventListener("initializing", function() | ||
{ | ||
accelerometer.getCurrentAcceleration(null, null, null); | ||
//Osp.Ui.init(); | ||
//appObj = new TestWeb(); | ||
//appObj.launch(); | ||
}, this); | ||
*/ | ||
document.addEventListener("deviceready", function(e) {alert('deviceready')}); | ||
</script> | ||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | ||
<meta name="viewport" content="target-densitydpi=high-dpi, user-scalable=no" /> | ||
<title>Cordova Sample</title> | ||
<script type="text/javascript" src="./js/cordova.bada.js"></script> | ||
<style type="text/css"> | ||
button.btn { | ||
color:#050; | ||
font: bold 24px 'trebuchet ms',helvetica,sans-serif; | ||
background-color:#fed; | ||
width: 400px; | ||
height: 100px; | ||
border: 1px solid; | ||
border-color: #696 #363 #363 #696; | ||
/* filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr='#ffffffff',EndColorStr='#ffeeddaa'); */ | ||
} | ||
|
||
button.btn2 { | ||
color:#050; | ||
font: bold 24px 'trebuchet ms',helvetica,sans-serif; | ||
background-color:#fed; | ||
width: 200px; | ||
height: 100px; | ||
border: 1px solid; | ||
border-color: #696 #363 #363 #696; | ||
/* filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr='#ffffffff',EndColorStr='#ffeeddaa'); */ | ||
} | ||
</style> | ||
<link href="osp://webapp/css/style.css" rel="stylesheet" type="text/css" /> | ||
<script type="text/javascript" src="osp://webapp/js/webapp_core.js"> </script> | ||
<script type="text/javascript" src="osp://webapp/js/webapp_ui.js"> </script> | ||
<script> | ||
document.addEventListener("deviceready", function(e) {alert('Cordova is ready');}); | ||
</script> | ||
</head> | ||
<body> | ||
<ul> | ||
<li> | ||
<h3>Device</h3> | ||
<div><button type="button" class="btn" onclick="setDeviceInfo()">DeviceInfo</button></div> | ||
<span id="device"></span> | ||
</li> | ||
<li> | ||
<h3>Acceleration</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="getCurrentAcceleration();">getCurrentAcceleration</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" id="accelBtn" onclick="toggleAcceleration();">watchAcceleration</button> | ||
</div> | ||
<div> | ||
<span id="acceleration"></span> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Geolocation</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="getCurrentPosition();">getCurrentPosition</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" id="geoBtn" onclick="togglePosition();">watchPosition</button> | ||
</div> | ||
<div> | ||
<span id="geolocation"></span> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Compass</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="getCurrentHeading();">getCurrentHeading</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" id="compassBtn" onclick="toggleCompass();">watchHeading</button> | ||
</div> | ||
<div> | ||
<span id="heading"></span> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Connection</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="getConnection();">getConnectionType</button> | ||
</div> | ||
<div> | ||
<span id="connection"></span> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Notifications</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationAlert();">Alert</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationAlert();">Confirm</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationVibrate();">Vibrate</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationBeep();">Beep</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationLightOn();">Light ON</button> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Camera</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="cameraPreview();">cameraPreview</button> | ||
</div> | ||
<div id="cameraControls" style="display:none;"> | ||
<span> | ||
<button type="button" class="btn2" onclick="startVideoCapture();">startVideoCapture</button> | ||
<button type="button" class="btn2" onclick="stopVideoCapture();">stopVideoCapture</button> | ||
</span> | ||
<div> | ||
<button type="button" class="btn" onclick="captureImage();">captureImage</button> | ||
</div> | ||
</div> | ||
<div id="preview"></div> | ||
</li> | ||
</ul> | ||
<!--<script type="text/javascript" src="./js/capture.js"></script> | ||
<script type="text/javascript" src="./js/notification.js"></script> | ||
<script type="text/javascript" src="./js/connection.js"></script> | ||
<script type="text/javascript" src="./js/accelerometer.js"></script> | ||
<script type="text/javascript" src="./js/compass.js"></script> | ||
<script type="text/javascript" src="./js/device.js"></script>--> | ||
<script type="text/javascript" src="./js/sample.js"></script> | ||
<ul> | ||
<li> | ||
<h3>Device</h3> | ||
<div><button type="button" class="btn" onclick="setDeviceInfo()">DeviceInfo</button></div> | ||
<span id="device"></span> | ||
</li> | ||
<li> | ||
<h3>Acceleration</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="getCurrentAcceleration();">getCurrentAcceleration</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" id="accelBtn" onclick="toggleAcceleration();">watchAcceleration</button> | ||
</div> | ||
<div> | ||
<span id="acceleration"></span> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Geolocation</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="getCurrentPosition();">getCurrentPosition</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" id="geoBtn" onclick="togglePosition();">watchPosition</button> | ||
</div> | ||
<div> | ||
<span id="geolocation"></span> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Compass</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="getCurrentHeading();">getCurrentHeading</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" id="compassBtn" onclick="toggleCompass();">watchHeading</button> | ||
</div> | ||
<div> | ||
<span id="heading"></span> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Connection</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="getConnection();">getConnectionType</button> | ||
</div> | ||
<div> | ||
<span id="connection"></span> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Notifications</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationAlert();">Alert</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationAlert();">Confirm</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationVibrate();">Vibrate</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationBeep();">Beep</button> | ||
</div> | ||
<div> | ||
<button type="button" class="btn" onclick="notificationLightOn();">Light ON</button> | ||
</div> | ||
</li> | ||
<li> | ||
<h3>Camera</h3> | ||
<div> | ||
<button type="button" class="btn" onclick="cameraPreview();">cameraPreview</button> | ||
</div> | ||
<div id="cameraControls" style="display:none;"> | ||
<span> | ||
<button type="button" class="btn2" onclick="startVideoCapture();">startVideoCapture</button> | ||
<button type="button" class="btn2" onclick="stopVideoCapture();">stopVideoCapture</button> | ||
</span> | ||
<div> | ||
<button type="button" class="btn" onclick="captureImage();">captureImage</button> | ||
</div> | ||
</div> | ||
<div id="preview"></div> | ||
</li> | ||
</ul> | ||
<script type="text/javascript" src="./js/sample.js"></script> | ||
</body> | ||
</html> |