New question

Question:

Date: 22-12-2015 05:57:05 (In Spanish)

¿Cómo usar JQuery Mobile?[Resolved]

Hola comunidad en esta oportunidad , quisiera compartir sobre el jquery mobile gracias a el podemos crear aplicacione moviles , ojo(solo la presentacion) ya para manipular software podemos usar cordova

adjunto codigo html para q vea como se visualiza , el html es un login de acceso

saludos


<html>
<head>
	<meta charset=utf-8>
	<meta name=description content="">
	<meta name=viewport content="width=device-width, initial-scale=1">
	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
	<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
	<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
	<title>APP JQUERY MOBILE</title>
	<style type="text/css" media="screen">
		 body{font-family: "century gothic" !important;font-size: 15px !important}
	</style>
</head>
<body>

<section id="page" data-role="page">

     <header data-role="header" data-position="fixed" data-theme="b">
     	<h1>Acceso al Sistema</h1>
     </header>

	<article role="main" class="ui-content">
		 <form action="index_submit" method="get" accept-charset="utf-8">
		 	        <div data-role="fieldcontain">
		 	        	<label for="">Ingrese usuario</label>
		 	        	<input type="text" name="" id="" value="" />
		 	        </div>
		 	        <div data-role="fieldcontain">
		 	        	<label for="">Ingrese password</label>
		 	        	<input type="text" name="" id="" value="" />
		 	        </div>

		 	        <input type="button" value="Acceder" data-theme="b"/>
		 </form>
	</article><!-- /content -->
	
<div data-role="footer" data-theme="b" data-position="fixed">		
	<div data-role="navbar">
		<ul>
			<li><a href="#">Help</a></li>
			<li><a href="#">Contactese</a></li>
		</ul>
	</div><!-- /navbar -->
</div><!-- /footer -->


</section><!-- /page -->
	
</body>
</html>

Tags: HTML - Input - Javascript - JQuery - JQuery Mobile Votes: 5 - Answers: 3 - Views: 14 Share on: Google Facebook Twitter LinkedIn Link
 

Answers:

To actively participate in the community first must authenticate, enter the system.Sign In
 
frjcbbae garagebible.com