JQUERY BASIC - Pertemuan 5 Part 1

Member CPNS Kemdikbud
15 May 202426:35

Summary

TLDRThe video script discusses the use of JavaScript, specifically the jQuery library, in creating interactive websites. It introduces the concept of using jQuery for website development and demonstrates how to implement a BX Slider, a jQuery plugin, to create a slideshow effect with three images. The script also covers how to add jQuery and BX Slider libraries to a webpage, either by downloading or using online sources, and emphasizes the importance of consulting documentation for proper implementation.

Takeaways

  • 😀 JavaScript is a powerful technology used to create interactive websites.
  • 😀 jQuery is a JavaScript library that simplifies the process of adding interactivity to websites.
  • 😀 The script discusses the use of jQuery to enhance the interactivity of a website, specifically through the example of a slider.
  • 😀 The BX Slider is a jQuery plugin that allows for creating a responsive and interactive image slider.
  • 😀 To implement the BX Slider, one needs to include the necessary jQuery and BX Slider libraries in the HTML document.
  • 😀 Documentation is crucial for understanding how to use jQuery and its plugins, such as the BX Slider.
  • 😀 The script demonstrates how to add jQuery and BX Slider to a webpage, either by downloading the libraries or by including them via CDN links.
  • 😀 CSS can be used to style the slider and ensure that the images are displayed centrally within the slider area.
  • 😀 The script provides a step-by-step guide on how to set up a basic HTML page and add the necessary code to create a functioning slider.
  • 😀 It is important to ensure that the jQuery and BX Slider libraries are correctly linked and that the CSS is properly applied to achieve the desired slider functionality.

Q & A

  • What is the main purpose of JavaScript in web development according to the script?

    -JavaScript is used in web development to make websites more interactive and dynamic, utilizing its powerful technology.

  • What is jQuery and how does it relate to JavaScript?

    -jQuery is a JavaScript library that simplifies HTML document traversing, event handling, and animation, making it easier to develop interactive web pages.

  • What is the BX Slider mentioned in the script?

    -BX Slider is a jQuery plugin that allows the creation of responsive and interactive sliders for images or content, enhancing the user experience on a website.

  • How can one include jQuery in their web page according to the script?

    -jQuery can be included in a web page either by downloading the library from jquery.com and linking it in the HTML, or by using a CDN link directly in the script tag.

  • What is the process of adding a jQuery plugin like BX Slider to a web page?

    -To add a jQuery plugin like BX Slider, one needs to include the plugin's documentation, download or link to the plugin's source, and then initialize the plugin using the correct jQuery syntax within a script tag.

  • Why is it necessary to refer to the documentation when using jQuery or its plugins?

    -Documentation provides the necessary instructions, examples, and syntax required to properly implement and customize jQuery plugins, avoiding guesswork and potential errors.

  • What is the significance of the '.ready()' function in jQuery mentioned in the script?

    -The '.ready()' function in jQuery is used to ensure that the DOM is fully loaded before executing the code inside the function, preventing any errors due to premature execution.

  • How can one ensure that the images used in a slider are displayed in the center of the web page?

    -Centering images in a web page can be achieved by using CSS properties such as 'margin: auto;' or by using the 'center' tag, ensuring that the images are aligned properly within their container.

  • What is the role of CSS in the context of creating a slider with BX Slider?

    -CSS is used to style the slider, including the layout, appearance, and positioning of the slides, as well as adding animations and transitions for a smooth user experience.

  • Why might the script suggest removing the jQuery library link if one is using BX Slider?

    -The script may suggest removing the jQuery link if there is a conflict or if the version of jQuery included is not compatible with the BX Slider plugin, which requires a specific version of jQuery.

  • How can the slides in a BX Slider be made to automatically transition to the next slide?

    -Auto-transition can be achieved by setting the 'auto' property to 'true' in the BX Slider initialization, allowing the slides to automatically move to the next one after a set interval.

Outlines

00:00

😀 Introduction to JavaScript and jQuery

The first paragraph introduces the concept of JavaScript as a powerful technology for creating interactive websites. It mentions the existence of various frameworks for JavaScript but focuses on the jQuery library, a popular JavaScript library. The speaker discusses the use of jQuery to enhance website interactivity, giving the example of the BX Slider, a jQuery plugin that allows for image sliding effects. The paragraph also touches on the ease of implementing jQuery by referring to its documentation rather than complex coding.

05:13

🛠️ Setting Up jQuery and Creating a Slider

This paragraph delves into the process of adding jQuery to a webpage, either by downloading it from the official jQuery website or by including it from a Content Delivery Network (CDN) like Google. It explains how to integrate jQuery into a web page using script tags and provides a step-by-step guide for creating a basic HTML structure with a div for content, where images can be inserted. The speaker also discusses the importance of understanding the documentation for implementing features like the BX Slider.

10:15

🖼️ Enhancing Web Page with Image Slider Using BX Slider

The third paragraph continues the discussion on creating an image slider using the BX Slider plugin. It explains the need for a specific library for BX Slider and how to include it in the webpage. The speaker provides a brief overview of the coding process, mentioning the use of the 'document.ready' function in jQuery to initialize the slider. The paragraph also highlights the importance of including the correct library and ensuring that the HTML structure is set up to accommodate the slider functionality.

15:18

🔧 Troubleshooting and Automating the Slider

In this paragraph, the speaker addresses potential issues that may arise when implementing the slider, such as the need to ensure that the BX Slider library is correctly referenced. They mention the importance of checking for errors and understanding the role of the 'auto' parameter in making the slider automatically transition between slides. The speaker also discusses the importance of centering the images within the slider for a better visual presentation.

20:27

📝 Finalizing the Slider and Encouraging Self-Learning

The final paragraph wraps up the tutorial by encouraging learners to experiment with the code and understand the process step by step, rather than simply copying and pasting. The speaker emphasizes the importance of learning from documentation and suggests that images for the slider can be sourced offline as well. They also mention the possibility of adding a 'center' tag to ensure the images are centrally aligned within the slider.

Mindmap

Keywords

💡JavaScript

JavaScript is a high-level, interpreted programming language commonly used for enhancing web interactivity and creating dynamic content. In the video's context, it is the core technology for building websites and making them interactive. The script mentions JavaScript as a powerful tool for website development, and it is used to create sliders and other interactive elements.

💡Library

In programming, a library is a collection of pre-written code that programmers can use to perform certain tasks without having to write the code from scratch. The script refers to JavaScript libraries, which are collections of JavaScript code that extend the functionality of the language, such as the jQuery library discussed in the video.

💡jQuery

jQuery is a fast, small, and feature-rich JavaScript library designed to simplify the client-side scripting of HTML documents. The video script discusses jQuery as a means to make websites more interactive, with the example of a BX Slider, which is a jQuery plugin for creating image sliders.

💡Framework

A framework in web development is a collection of tools, conventions, and best practices that make it easier to build and maintain web applications. The script briefly mentions frameworks for JavaScript, indicating that they are tools that have emerged to facilitate the use of JavaScript in web development.

💡BX Slider

BX Slider is a lightweight and responsive jQuery plugin used to create sliders with images and content. In the video, the speaker uses BX Slider as an example of a jQuery plugin that can be implemented to make a website's images slide, thus enhancing the user experience.

💡Documentation

Documentation in programming refers to the written materials that describe how a program or library works. The script emphasizes the importance of looking at the documentation for jQuery and BX Slider to understand how to implement them in a web project.

💡HTML

HTML, or HyperText Markup Language, is the standard markup language used to create web pages. The script describes creating an HTML file and using HTML tags to structure the web page, including the use of div tags to contain images for the slider.

💡CSS

CSS, or Cascading Style Sheets, is a style sheet language used for describing the look and formatting of a document written in HTML. The script mentions CSS in the context of styling the web page and making adjustments to the slider's appearance.

💡Slider

In web design, a slider is a component that allows users to navigate between different pieces of content, often images, in a carousel-like fashion. The video script uses the term 'slider' to refer to the interactive image carousel created with the BX Slider plugin.

💡DOM

The Document Object Model (DOM) is a programming interface for HTML documents. It treats HTML documents as a tree structure where each node is an object representing a part of the document. The script refers to the DOM in the context of selecting elements, such as the 'content' class, to apply jQuery functions like the BX Slider.

💡 CDN

A Content Delivery Network (CDN) is a system of distributed servers that deliver web content to users based on their geographic location. The script mentions including jQuery from a CDN, such as Google's, which allows developers to load resources from servers that are closer to the user, improving load times.

Highlights

JavaScript is a powerful technology used for creating interactive websites.

Numerous frameworks have emerged for JavaScript to enhance web development.

The session focuses on learning the jQuery library, a popular JavaScript library.

jQuery simplifies the process of making websites interactive without full JavaScript coding.

BX Slider is introduced as a jQuery plugin to create image sliders for web pages.

Documentation is key for implementing jQuery and plugins like BX Slider without guessing code.

Creating a basic HTML page is the first step before adding JavaScript functionalities.

Div tags are used to structure content, such as images, within a webpage.

Three images are used as an example to demonstrate the implementation of a slider.

The process of making images slide within a single area is explained using jQuery.

Offline and online methods for including the jQuery library in a webpage are discussed.

Downloading and using the jQuery library from jquery.com or including it via a CDN is demonstrated.

The importance of linking the jQuery library correctly using script tags is emphasized.

CSS can be added internally for styling purposes, making it easier to manage.

The speaker guides through creating a responsive slider using BX Slider with jQuery.

The necessity of including the specific library for BX Slider before using it is highlighted.

A step-by-step approach is suggested for better understanding rather than copy-pasting code.

Autoplay functionality for the slider is mentioned, enhancing the user experience.

The transcript concludes with a reminder to center images and ensure proper CSS integration for aesthetics.

Transcripts

play00:02

y Siapa yang mau atau Siapa yang tahu

play00:05

apa itu

play00:12

jquery ayo enggak ada yang

play00:16

jawab library javascript

play00:19

Bu Oke library javascript Nah ada

play00:23

ngomongin javascript nah

play00:26

eh sebetulnya javascript ini digun untuk

play00:30

membuat sebuah website karena javascript

play00:32

ini mempunyai eh teknologi yang powerful

play00:36

ya untuk membuat sebuah website nah eh

play00:39

kalian bisa membuat website dengan full

play00:41

javascript eh apalagi sekarang sudah

play00:44

muncul banyak framework-famework ya

play00:46

untuk untuk javascript ini tapi untuk eh

play00:49

Dasa yang akan kita pelajari hanya

play00:52

library cjquery-nya saja ya Jadi kita

play00:55

tidak full eh membuat si atau

play00:58

menggunakan javascript nanti Mungkin

play01:00

kalian bisa improve atau e belajar lebih

play01:03

lanjut mengenai javascript Bagaimana sih

play01:05

menggunakan javascript di

play01:07

pembuatan website oke nah eh javascript

play01:12

digunakan pada pembuatan website ini

play01:15

sudah kita bahas di awal fungsinya untuk

play01:18

membuat si website tersebut lebih

play01:20

interaktif ya lebih interaktif salah

play01:23

satunya ini saya akan Contohkan satu

play01:26

buah javascript

play01:28

ee yaitu BX slider sor satu buah jquery

play01:32

yaitu BX slider di mana BX slider ini

play01:34

memungkinkan

play01:36

eh page kalian atau halaman kalian itu

play01:39

lebih interaktif salah satunya

play01:41

ini kita punya tiga gambar eh dengan

play01:45

menggunakan javript si gambar ini bisa

play01:48

ng-slide slider BX slider ketika Kalian

play01:51

mau menambahkan jquery atau javascript

play01:55

atau Eh tadi BX slider ini yang akan

play01:57

kita bahas kalian perlu Cari dokumen

play02:00

dokumentasinya lalu tinggal kalian pakai

play02:02

Jadi cukup mudah kalian gak perlu ini

play02:05

nebak-nebak codingnya apa gak perlu kita

play02:07

langsung cari aja documentationnya terus

play02:10

kita gunakan gitu ya

play02:14

oke sekali lagi kita akan buat

play02:16

javascript kita butuh t gambar kita

play02:20

bikin satu buah halaman ini kalian

play02:21

jangan nging dulu ya Lihatin aja

play02:24

dulu

play02:27

saya saya bikin nama

play02:30

html-nya

play02:32

halamanjquery.html saya simpan di htdx

play02:34

ya

play02:36

halamanjquery.html terus seperti biasa

play02:38

saya keluarkan eh default tag HTML terus

play02:43

saya mau bikin eh atau Saya mau

play02:45

menambahkan tiga

play02:47

gambar Saya mau pakai Div content dulu

play02:51

terus di dalam Div content Saya mau

play02:53

masukkan tiga gambar

play03:05

Anggaplah Saya mau gambar apa ya misal

play03:08

saya cari di sini gambar gambar

play03:12

kegiatan

play03:16

University ini ya

play03:20

Eh yang gambarnya agak yang gambarnya

play03:25

landscape ya kita ambilnya ya

play03:35

kita bikin tiga gambar aja masing-masing

play03:39

punya di Ya tapi saya enggak kasih kelas

play03:42

di dalam

play03:44

div-nya mm gambarnya kita bikin

play03:47

beda-beda

play03:57

aja h

play04:01

ni

play04:08

misalnya kita sudah punya

play04:12

Eh apa tuh tiga buah gambar ya kita

play04:16

running dulu di sini openin browser biar

play04:20

cepat ya tuh kita sudah punya tiga buah

play04:23

gambar 1 2 3 gimana sih caranya supaya

play04:27

kita e bisa bikin Si tiga gambar ini

play04:31

jadi ng-eslide di dalam satu buah area

play04:36

ya satu area kayak gini contohnya Ini

play04:38

kan mereka itu tiga gambar yang berbeda

play04:42

tapi mereka tuh ng-slide-nya di satu

play04:44

area di satu area ini nah gimana caranya

play04:47

kalian bisa

play04:50

eh

play04:52

klik wait ini codingnya saya lupa klik

play04:57

apa

play05:13

nah oke ini nih ini ketika kita klik

play05:16

instal ini katanya kita dikasih tahu the

play05:20

easy way-nya cara gampangnya supaya bisa

play05:24

menambahkan slide seperti yang tadi tuh

play05:27

sama seperti yang tadi saya buat di dia

play05:29

punya satu area atau satu kelas namanya

play05:31

slider si kelas slider tersebut punya

play05:35

Child atau punya anaknya atau punya

play05:37

bagian ada dua di kalau ini dia bukan

play05:41

gambar tapi dia adalah teks ya tuh I am

play05:44

a slide and I am another slide nah saya

play05:47

juga bikin codingnya E ada satu area

play05:50

atau satu kelas namanya konten di mana

play05:53

sih kelas konten ini punya tiga bagian

play05:56

yaitu di pertama gambar yang pertama di

play05:59

kedua dua gambar yang kedua dan di

play06:01

ketiga gambar yang ketiga ya jadi tiga

play06:03

gambar tersebut dinaungi atau di dalam

play06:06

satu bagian yaitu di kelas content sama

play06:09

seperti ini tuh ya Nah untuk menambahkan

play06:12

jquery atau javascript sebetulnya kalian

play06:15

perlu menambahkan

play06:17

eh apa ya namanya ya sourch-nya atau ya

play06:20

library-nya lah library-nya kalian bisa

play06:23

tambahkan secara online maupun offline

play06:30

nih contohnya ada dari W school W schol

play06:33

mencontohkan Gimana sih caranya ngad

play06:36

jquery ke dalam page kalian ke dalam web

play06:39

pages kalian yang pertama katanya ada

play06:43

cara offline yaitu download Si library

play06:46

jquery-nya dari jquery.com dari sini

play06:50

atau kalian include jquery from cdn like

play06:53

Google nah kalau ini caranyaah Eh kalian

play06:58

menyisipkan sebuah link kayak kita tadi

play07:01

masukin gambar Ya gambar yang tadi saya

play07:03

bikin kan Klik Kanan copy image address

play07:07

baru masukin di sini nah sama seperti

play07:09

itu si jquery library-nya pun bisa

play07:12

ditambahkan secara online

play07:16

menggunakan link ya kita bahas dulu yang

play07:20

menggunakan secara offline kalau secara

play07:22

offline kalian bisa download di sini

play07:25

atau sebetulnya ini isinya sih Harusnya

play07:28

coding ya nah ini contohnya

play07:31

e Anggaplah yang coba yang ini nah ini

play07:37

ini isinya coding jadi sih sebetulnya

play07:40

bukan diownload ya tapi lebih ke kalian

play07:42

copy kalian copy semua codingnya terus

play07:47

Kalian bikin sebuah file Misalnya

play07:50

namanya apa

play07:52

jquyjs ya Jadi

play07:56

exsan ini

play07:59

ini baru kalian save Nah ini kan

play08:01

save-nya di htdx baru nanti di sini

play08:05

kalian e panggil si library-nya pakai

play08:08

script search

play08:10

nanti Nah di sini panggillah nama

play08:12

file-nya jquery

play08:15

jquery.js itu ya Secara offline caranya

play08:19

kayak gitu ulangin ya Jadi kalian harus

play08:22

download coding ini atau copy coding ini

play08:25

ini library jquery-nya dimasukkan ke

play08:28

dalam satu file Di sini bebas

play08:30

penyimpanannya di mana saja lalu untuk

play08:33

mengkoneksikan dengan html-nya kalian

play08:35

perlu pakai script tag script lalu

play08:39

dikasih search baru panggil nama file

play08:41

ini itu ya kan kalau CSS pakainya link

play08:45

ya link HF nih link HF kalau jquery

play08:48

kalian pakainya tag script terus dikasih

play08:51

sourchnya gitu ya paham sampai sini

play08:54

untuk yang offline ada yang bingung dulu

play09:00

enggak ada ya Oke Enggak ada kalau gitu

play09:03

kita lanjut

play09:05

eh ke secara online secara online ini

play09:10

cukup mudah kalian tinggal masukin link

play09:13

dari Google cdn di sini ini dicopy aja

play09:16

tuh lihat di sini dicopy terus

play09:19

dimasukkan aja di sini

play09:21

nah selesai jadi kalau secara online

play09:26

kalian enggak memerlukan si ini nih

play09:29

yang ini kalian enggak perlu karena kan

play09:31

enggak dipanggil juga ya di sini ya di

play09:33

sournya enggak dipanggil berarti yang

play09:35

ini kalau secara online kalian enggak

play09:36

perlu download dulu library dari eh

play09:39

jaquery.com enggak perlu kalian tinggal

play09:41

masukin si snya secara online seperti

play09:44

ini Ini udah selesai kalian menambahkan

play09:47

documentation untuk library jquery-nya

play09:49

jadi jquerynya Sudah bisa digunakan

play09:52

sampai sini ada yang

play09:55

bingung enggak ada

play10:00

enggak ada Oke kalau enggak ada saya mau

play10:04

e bikin CSS dulu secara internal ya

play10:08

supaya

play10:11

gampang Saya mau bikin si imnya ini

play10:15

semuanya t imnya ini winya

play10:19

e berapa ya Anggaplah

play10:22

3,5

play10:25

pikelnya 100 pel Coba kita lihat dulu

play10:28

kita dulu si ukuran dari gambarnya

play10:36

ya terlalu

play10:54

kecil Nah kayak gini aja ya oke Ini udah

play10:58

semuanya satu eh ukuran oke nah sekarang

play11:03

kita akan masukkan si eh coding untuk

play11:06

membuat si knya ini si gambarnya ini

play11:10

bisa ngeslide gimana caranya kalian bisa

play11:12

lihat di sini di bagian eh documentation

play11:16

dari BX

play11:17

slidernya itu di sini nih Mana ya Nah

play11:20

tuh Nih ada yang namanya

play11:25

eh fungsi atau perintah untuk membuat si

play11:30

slide-nya itu BX slider ini nih namanya

play11:32

dot BX slider tapi sebelum kalian bikin

play11:37

atau masukkan ini kalian perlu

play11:39

menambahkan library khusus untuk si BX

play11:42

slidernya ini library-nya berarti kalian

play11:44

harus instal dulu ya ini harus instal

play11:48

dulu nih Run from common l b install

play11:53

back sliderave sebetulnya bisa juga

play11:55

caranya secara offline kita lihat dulu

play11:58

ada enggak dia

play11:59

si

play12:01

offline slidernya Oh ini nih yang ini

play12:04

nih ini kita coba masukkan

play12:08

ya yang online kita masukkan

play12:11

dulu

play12:17

Wi

play12:20

Wait

play12:22

ya ini Kita sudah masukkan eh untuk

play12:25

documentation dari Link Ex

play12:29

querynya ya backider documentation

play12:32

library-nya ini wajib dimasukkan baru

play12:34

kita bisa bikin di sini untuk perintah

play12:38

jquery buat bikin Si back slidernya

play12:41

pakai tag script ya kalau kalau jquery

play12:44

kalau CSS tagnya style kalau

play12:48

eh jquy tagnya

play12:51

scriipt nah kalian tinggal copy dari

play12:54

sini nih yang

play12:58

ini Ini dokumen ready function Ini

play13:01

dokumen ini kalau kalian lihat di jquery

play13:04

ada dolar ya dolar kayak gini ini

play13:06

artinya ee menandakan sebuah objek ya

play13:08

menandakan sebuah

play13:10

objek Nah kalau di sini kan dia dot

play13:13

slider coba saya mau tanya deh sama

play13:15

kalian ini dot slider manggil apa ya

play13:17

kira-kira

play13:19

ya CL plus

play13:28

betul e pakai sebentar

play13:34

iya iya

play13:48

sebentar sebentar

play13:54

A belum ke sem

play13:57

kok Sori ya ya oke nah Ini kan namanya

play14:02

kelasnya slider sedangkan nama kelas

play14:03

kita apa bukan slider tapi konten kan

play14:06

Nah ini konten berarti di sini kita

play14:08

ganti konten ini maksudnya apa saya eh

play14:11

bahas dari sini ini dokumen ready

play14:13

function berarti objek dokumen dokumen

play14:16

itu ngomongin tentang si halaman html

play14:18

ini ini yang halaman

play14:20

jquery.html Katanya kita bikin function

play14:23

untuk dokumen ready function dokumen

play14:26

ready function nih nih dokumen ready

play14:28

function ya terus dot content BX slider

play14:33

maka si kassas konten ini diterapkan

play14:37

fungsi di jquery namanya BX slider

play14:39

sehingga jadinya ini harusnya udah jadi

play14:42

sih

play14:44

wiit tuh lihat kalian lihat jadi satu ya

play14:48

bukan satu jadi jadi mereka tuh

play14:51

nge-slide tuh 1 2 3 tuh ngeslide

play14:55

tampilannya masih

play14:57

ee kurang rapi karena dia harusnya ada

play15:00

di tengah dan juga tadi ada next

play15:01

slide-nya itu pakai arrow ya Nah ini

play15:03

kenapa bisa langsung Mereka ee jadi di

play15:07

dalam satu area dan bergeser secara eh

play15:10

gantian itu caranya hanya pakai fungsi

play15:15

yang ini BX slider jadi ini s-nya enggak

play15:18

boleh kecil karena ini adalah fungsi ya

play15:20

perintah di dalam jquery-nya Jadi kalau

play15:23

s-nya kecil ya dia enggak akan ngerasa

play15:25

ada tu ya Jadi ini harus ee Pak Sensitif

play15:29

ya gitu nah tapi kalau kita hapus ini

play15:32

ini kan library si eh jquery-nya ya

play15:36

untuk back slidernya ya kita hapus tuh

play15:39

enggak ada kenapa enggak ada karena dia

play15:42

menggunakan BX slider tapi dia enggak

play15:44

panggil si library untuk BX slidernya

play15:47

kalau kalian Klik Kanan di sini inspect

play15:49

terus ngelihat errornya ini ada error

play15:51

satu errornya itu undefined harusnya

play15:54

function yang BX slider nih kita lihat

play15:56

tuh BX slider

play16:00

katanya dia gak ngedeteksi B slider ini

play16:03

bukan sebuah function karena kenapa

play16:05

karena si eh tadi codingnya yang buat

play16:08

manggil library backidernya kita

play16:12

hapus tapi kalau kita balikan udah gak

play16:15

eror ya sayang itu aja dulu ini udah jam

play16:21

kamu takutnya

play16:23

kerja oke kayak gitu ya ngerti sampai

play16:25

sini dulu Ada yang bingung

play16:29

bu k tiba-tiba ada tulisan PR next 1 3

play16:32

itu langsung dari library jquerynya jadi

play16:34

gampang kan Tinggal kita pakai

play16:36

aja sampai sini ada yang bingung nih 10

play16:40

menit lagi nih

play16:48

Oke next ya Nah katanya kita cek lagi di

play16:52

sini ada enggak si cssnya dia

play16:54

menyediakan gak ya cssnya ini cssnya

play16:57

juga ya si Oh ini nih css-nya Nah ini

play17:03

nih nih css-nya nih bagian atas tuh

play17:06

Kalian bisa copy Terus kalian masukkan

play17:09

si css-nya di

play17:11

sini dia secara online juga ya lihat tuh

play17:14

https cdn JS deliver dan lain-lainnya

play17:17

itu secara online enggak offline ini

play17:22

kita Coba refresh Apa yang berpengaruh

play17:26

ketika dia ditambahkan CS S Tuh jadinya

play17:30

Si pref next 13-nya hilang dan ganti

play17:32

jadi

play17:33

errow Bu itu Kok enggak di tengah ya Oke

play17:36

kita bikin tengahnya aja di html aja ya

play17:38

si gambarnya tuh enggak di tengah Hm

play17:42

kita kasih aja Tengah di sini pakai tag

play17:44

center

play17:45

ya supaya dia semuanya ada di tengah

play18:06

tuh tuh di tengah

play18:10

udah ya dia bisa nge-slide tapi enggak

play18:13

otomatis

play18:14

nge-eslide-nya bisa enggak ya Bu dibikin

play18:17

otomatis bisa saya lupa Bentar ya saya

play18:19

ingat-ingat dulu BX slider

play18:24

H saya lupa nih

play18:34

Sema benar

play18:36

ya kadang-kadang kadang-kadang saya tuh

play18:40

suka lupa bagian

play18:41

ee Ini nih ini kurungk awalnya nih wait

play18:46

BX

play18:51

slider bentar ya

play19:29

kalau di titik

play19:37

du saya lupa nih jadi si fungsinya auto

play19:41

tapi saya lupa untuk bikinnya

play19:45

tuh Aut

play19:52

kentas kayaknya engak ada di

play19:54

dokumentasinya

play19:57

deh auto true auto

play20:01

true kalian bikin aja dulu sampai dia

play20:05

jadi ya baru saya cek dulu di bagian ini

play20:08

nih buat bikin Si auto ngeslide

play20:13

ya nih kalian bikin dulu sampai sini

play20:26

nah bikin tu sampai sini cara bikinnya

play20:31

Eh kalau bisa sih kalian enggak usah

play20:34

lihat dulu codingnya maksudnya bikin aja

play20:36

dulu sendiri caranya kan ada ya Eh si

play20:41

apa tuh si documentation-nya nih saya

play20:44

kirimin ke kalian Jadi kalian bisa step

play20:47

by stepnya pakai cara sendiri ya jadi

play20:49

enggak yang copy paste dari e coding

play20:53

saya per Line supaya kalian tahu caranya

play20:55

gimana oke Ini juga yang bagian

play21:00

apa tuh bagian gambar juga kan Tinggal

play21:03

dimasukin sebuah kelas namanya konten

play21:06

terus dikasih di terus dikasih tag

play21:08

center buat bikin dia di tengah masukin

play21:11

gambarnya boleh juga secara offline

play21:12

gambarnya enggak harus online habis itu

play21:15

e tambahin di atasnya kayak gini Oke y

play21:19

silakan bikin dulu sampai waktunya habis

play21:21

juga kan nanti kita Break dulu kalau

play21:23

zoomnya habisnya 10 menit Silakan dicoba

play26:28

foreign

Rate This

5.0 / 5 (0 votes)

Связанные теги
JavaScriptjQueryWeb DevelopmentInteractive WebsitesBX SliderCSSHTMLSliderDocumentationOnline Learning
Вам нужно краткое изложение на английском?