Deklarasi CDN (Content Delivery Network)

File CSS dan JS JQuery Mobile sendiri sebenarnya tidak perlu di download karena dapat digunakan melalui CDN (Content Delivery Network). Contoh deklarasi sebagai berikut:

<!DOCTYPE html>
<html>
 <head>
<!-- Include meta tag to ensure proper rendering and touch zooming-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Include jQuery Mobile stylesheets --> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<!-- Include the jQuery library -->
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<!-- Include the jQuery Mobile library -->
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">
</script>
</head>
<body>
</body>
</html>
Code 1. CDN JQuery Mobile

Kelebihan menggunakan CDN adalah jika browser telah memiliki cache file maka tidak perlu lagi didownload sehingga lebih cepat. Tetapi jika Anda mengembangkan web app secara lokal dalam kondisi sering tidak terkoneksi dengan internet maka library dapat di download secara manual di: http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css http://code.jquery.com/jquery-1.11.2.min.js dan http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js (buka dibrowser dan pilih save-page-as). Contoh deklarasi dengan library yang diletakkan pada localhost (lokal) pada direktori yang sama dengan file html-nya adalah sebagai berikut:  


<!DOCTYPE html>
<html>
 <head>
<!-- Include meta tag to ensure proper rendering and touch zooming-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Include jQuery Mobile stylesheets --> <link rel="stylesheet" href="jquery.mobile-1.4.5.min.css">
<!-- Include the jQuery library -->
<script src="jquery-1.11.2.min.js"></script>
<!-- Include the jQuery Mobile library -->
<script src="jquery.mobile-1.4.5.min.js">
</script>
</head>
<body>
</body>
</html>
Code 2. Local


JQuery Mobile Untuk kode diatas, isi direktori akan tampak seperti berikut ini. Direktori images didapat dengan mendownload di JQueryMobile.com/download Gambar 6. Struktur File Selanjutnya kita akan membuat web app yang pertama menampilkan halaman utama. Buat Index.html dengan kode sebagai berikut (pastikan struktur direktori seperti Gambar 6. Setelah deklarasi CDN selesai selanjutnya menuju ke :

0 Response to "Deklarasi CDN (Content Delivery Network)"

Post a Comment