-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustom_Slider.html
More file actions
77 lines (71 loc) · 2.98 KB
/
Copy pathCustom_Slider.html
File metadata and controls
77 lines (71 loc) · 2.98 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
<link rel="stylesheet" href="css/style__Custom_Slider.css">
<title> Custom Slider </title>
</head>
<body>
<div class="container">
<div class="sidebar">
<div style="background: linear-gradient(229.99deg, #A1A8AE 26%, #928579 95%);">
<h1>Work place</h1>
<p>to best fotos</p>
</div>
<div style="background: linear-gradient(215.32deg, #928579 -1%, #574636 124%);">
<h1>photographer's kit</h1>
<p>for proffessional</p>
</div>
<div style="background: linear-gradient(221.87deg, #f8f8f8 1%, #a7a7a7 128%);">
<h1>Foto study</h1>
<p>modern study</p>
</div>
<div style="background: linear-gradient(220.16deg, #18d2f3 28%, #0293f3 96%);">
<h1>Creative fotos</h1>
<p>... winter</p>
</div>
<div style="background: linear-gradient(220.16deg, #f3e3b9 -8%, #313131 90%);">
<h1>Foto nature</h1>
<p>... to evening </p>
</div>
<div style="background: linear-gradient(-290deg, #000000 -2%, #646464 183%);">
<h1>SONY Camera</h1>
<p>Canon lens</p>
</div>
</div>
<div class="main-slide">
<div
style="background-image: url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=928&q=80');">
</div>
<div
style="background-image: url('https://images.unsplash.com/photo-1590486803833-1c5dc8ddd4c8?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80');">
</div>
<div
style="background-image: url('https://images.unsplash.com/photo-1554080353-a576cf803bda?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80');">
</div>
<div
style="background-image: url('https://images.unsplash.com/photo-1527011046414-4781f1f94f8c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80');">
</div>
<div
style="background-image: url('https://images.unsplash.com/photo-1431068799455-80bae0caf685?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80');">
</div>
<div
style="background-image: url('https://images.unsplash.com/photo-1621600411688-4be93cd68504?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1160&q=80');">
</div>
</div>
<!-- Кнопки навигации -->
<div class="controls">
<button class="down-button">
<i class="fas fa-arrow-down"></i>
</button>
<button class="up-button">
<i class="fas fa-arrow-up"></i>
</button>
</div>
</div>
<script src="js/script__Custom_Slider.js"></script>
</body>
</html>