-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvs2.html
98 lines (93 loc) · 3.07 KB
/
vs2.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
<!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>jbaileystudio - Victoria's Secret</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="favicons/favicon-32x32.png" type="image/x-icon">
<!-- Tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-219530537-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-219530537-1');
</script>
<!-- End Tracking -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<style>
</style>
<body>
<div style="background: #f7f7f7;">
<div class="header_div">
<a class="back_to_home" aria-label="J Bailey Studio Home" href="index.html" style="text-decoration: none; color: black">← Back Home</a>
<h1>Other Victoria's Secret Work</h1>
<ul class="horz_list2">
<li class="horz_item">Company: <a>Victoria's Secret</a></li>
<li class="horz_item">Departments: <a>UX Strategy</a></li>
</ul>
</div>
</div>
<main class="inner_main">
<h2>Miscellaneous</h2>
<ul>
<li>Five Things Senior Stakeholders Care About</li>
<ul>
<li></li>
</ul>
<li>What Happens During an A/B Test</li>
<ul>
<li></li>
</ul>
<li>Presentation Improvements</li>
<ul>
<li></li>
</ul>
<li>Desktop Navigation Update</li>
<ul>
<li></li>
</ul>
<li>Product Name Improvements</li>
<ul>
<li></li>
</ul>
<li>New Mobile Filter UI</li>
<ul>
<li></li>
</ul>
<li>The “Browsing User”</li>
<ul>
<li></li>
</ul>
</ul>
</main>
<footer>
<p>
Interested in this project and want to learn more? <a href="mailto:[email protected]">Reach out to me</a>
</p>
</footer>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<script>
// Get the button
let mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</body>
</html>