-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
182 lines (171 loc) · 7.02 KB
/
index.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!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">
<title>Abdulla Dalwai</title>
<link rel="stylesheet" href="css/index.css">
<!-- boxicons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- jquery skills -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"
integrity="sha512-aVKKRRi/Q/YV+4mjoKBsE4x3H+BkegoM/em46NNlCqNTmUYADjBbeNefNxYV7giUp0VxICtqdrbqU7iVaeZNXA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<!-- Header -->
<header>
<!-- <div class="nav container">
<img class="logoimg" src="rozik_logo1.1.png">
</div> -->
<nav id="nav">
<div class="leftNav">
<ul>
<li>
HOME
</li>
<!-- <li>
VEHICLES
</li> -->
<li>
<a href="stations.html">STATIONS</a>
</li>
</ul>
</div>
<div class="centerNav">
<img src="./rozik_logo1.1.png" alt="" srcset="" style="width: 121px;">
</div>
</nav>
</header>
<!-- home -->
<section class="home" id="home">
<div class="home-text container">
<h2 class="home-title container">
Sustain <span class="home-sub1">~</span> ability<span class="home-sub1">!</span>
</h2>
<span class="home-subtitle">Leading the Charge towards a Sustainable Future with Electric Vehicles. </span>
</div>
</section>
<br>
<!-- skills -->
<div class="project-text container">
<h2 class="project-title container">
<span class="project-span-title">Costs</span> (<span class="project-span-title">₹</span>)
</h2>
</div>
<section class="skill-body">
<div class="skills">
<div class="skill-name">Per Km Cost(₹)</div>
<div class="skill-bar">
<div class="skill-per" per="90"></div>
<div class="skill-pert" per="10"></div>
</div>
<div class="skill-name">8 Year Fuel Cost(₹) </div>
<div class="skill-bar">
<div class="skill-per" per="80"></div>
<div class="skill-pert" per="7"></div>
</div>
<div class="skill-name">Maintainance & Servicing(₹)</div>
<div class="skill-bar">
<div class="skill-per" per="60"></div>
<div class="skill-pert" per="30"></div>
</div>
<!-- <div class="skill-name">Parts : Repairs/Replacements(₹)</div>
<div class="skill-bar">
<div class="skill-pert" per="30" style="background: var(--text-color);"></div>
<div class="skill-per" per="90" style="background: var(--second-color);""></div>
</div> -->
</div>
</section>
<script>
$('.skill-pert').each(function () {
var $this = $(this);
var per = $this.attr('per');
$this.css("width", per + '%');
$({ animatedValue: 0 }).animate({ animatedValue: per }, {
duration: 1000,
step: function () {
$this.attr('per', Math.floor(this.animatedValue));
},
complete: function () {
$this.attr('per', Math.floor(this.animatedValue) + '%');
}
});
});
</script>
<script>
$('.skill-per').each(function () {
var $this = $(this);
var per = $this.attr('per');
$this.css("width", per + '%');
$({ animatedValue: 0 }).animate({ animatedValue: per }, {
duration: 1000,
step: function () {
$this.attr('per', Math.floor(this.animatedValue));
},
complete: function () {
$this.attr('per', Math.floor(this.animatedValue) + '%');
}
});
});
</script>
<br>
<br>
<!-- parts -->
<div class="project-text container">
<h2 class="project-title container">
<span class="project-span-title">Features</span> ~
</h2>
</div>
<div class="post-filter container">
<span class="filter-item active-filter" data-filter="all">All</span>
<span class="filter-item" data-filter="html">Performance</span>
<span class="filter-item" data-filter="adon">Ad~ons</span>
<!-- <span class="filter-item" data-filter="reward">Rewards</span> -->
</div>
<section class="post container">
<div class="post-box html">
<img src="https://www.renaultgroup.com/wp-content/uploads/2021/07/r-dam-1096063-min.jpeg" alt=""
class="post-img">
<h2 class="category">EV</h2>
<a href="./motor.html" class="post-title">
Motors in EV
</a>
<p class="post-description">Key component that converts electrical energy from the battery into mechanical
energy to power the vehicle. </p>
</div>
<div class="post-box adon">
<img src="https://cdn.mobilesyrup.com/wp-content/uploads/2020/11/Bolt-ev-crossover-infotatinment-scaled.jpg"
alt="" class="post-img">
<h2 class="category">EV</h2>
<a href="./Infotainment.html" class="post-title">
Infotainment in EV
</a>
<p class="post-description">Provides information and entertainment to the driver and passengers, emphasizes
the benefits of using an electric vehicle (EV) over a traditional gasoline-powered car</p>
</div>
<div class="post-box html">
<img src="https://d2n4wb9orp1vta.cloudfront.net/cms/brand/mms/2022-mms/mms-0822-photo-ultiumbattery.jpg"
alt="" class="post-img">
<h2 class="category">EV</h2>
<a href="./battery.html" class="post-title">
EV Batteries
</a>
<span class="post-date"></span>
<p class="post-description">A crucial component that provides the power for the electric motor.</p>
</div>
</section>
<!-- footer -->
<section class="footerr">
<div class="footer container">
<p>© K A H</p>
</div>
</section>
<!-- jquery link -->
<script src="https://code.jquery.com/jquery-3.6.1.js"
integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI=" crossorigin="anonymous"></script>
<!-- link to js -->
<script src="js/index.js"></script>
</body>
</html>