html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div id="slider"></div>
<script>
um=["https://cdn.pixabay.com/photo/2019/05/16/19/02/waterfalls-4207893_960_720.jpg",
"https://cdn.pixabay.com/photo/2017/07/22/16/41/queenstown-2529295_960_720.jpg",
"https://cdn.pixabay.com/photo/2014/04/14/20/11/japanese-cherry-trees-324175_960_720.jpg",
"https://cdn.pixabay.com/photo/2019/05/17/13/26/dandelion-4209715_960_720.jpg",
"https://cdn.pixabay.com/photo/2019/05/11/09/14/night-4195327_960_720.jpg","https://images.unsplash.com/photo-1554797589-7241bb691973?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=736&q=80.jpg",
"https://images.unsplash.com/photo-1679906961709-de55f3d12c76?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=735&q=80.jpg","https://images.unsplash.com/photo-1536768139911-e290a59011e4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=735&q=80.jpg",
"https://images.unsplash.com/Ys-DBJeX0nE.JPG?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80.jpg"
,"https://images.unsplash.com/photo-1516809391665-6e6fb6c153f8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1031&q=80.jpg",
"https://images.unsplash.com/photo-1480796927426-f609979314bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80.jpg","Jai sree Ram"]
var num =0;
function prev() {
var slider = document.getElementById('slider');
num--;
if(num < 0) {
num = um.length-1;
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
body {
background-color:red;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run