-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact-native.html
65 lines (52 loc) · 2.02 KB
/
react-native.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Supercar</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="reactimg/reacticon.ico">
</head>
<body class="bg" id="react-native">
<div id="progressbar"></div>
<div id="scrollpath"></div>
<section class="container-fluid">
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html" style="color: #03c4a1;">Home</a></li>
<li class="breadcrumb-item active" aria-current="page" style="color: #709fb0;">React-Native Projects</li>
</ol>
</nav>
<h1 class="header1">My Projects</h1>
<br>
<br>
<div class="row">
<div class="col-lg-4 col-md-6 " >
<div class="container1 ">
<div class="card1">
<div class="imgBx">
<img src="reactimg/supercarappimg11.png" alt="">
</div>
<br>
<div class="content">
<div class="contentBx">
<h3 style=""><A href="super-car.html">Super-Cars<br><span>Web-application</span></a></h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script>let progress = document.getElementById('progressbar');
let totHeight = document.body.scrollHeight - window.innerHeight;
window.onscroll = function(){
let progressHeight = (window.pageYOffset / totHeight) * 100;
progress.style.height = progressHeight + "%";
}</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
</body>
</html>