File size: 2,599 Bytes
b0496cd |
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 |
class CustomNavbar extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
nav {
background: rgba(6, 8, 26, 0.8);
backdrop-filter: blur(10px);
padding: 1.5rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
color: white;
font-weight: bold;
font-size: 1.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.logo span {
color: #00FFFF;
}
ul {
display: flex;
gap: 2rem;
list-style: none;
margin: 0;
padding: 0;
}
a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
position: relative;
}
a:hover {
color: #00FFFF;
}
a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -4px;
left: 0;
background-color: #00FFFF;
transition: width 0.3s;
}
a:hover::after {
width: 100%;
}
.cta-button {
background: #00FFFF;
color: #0F172A;
padding: 0.5rem 1.5rem;
border-radius: 9999px;
font-weight: 600;
transition: all 0.3s;
}
.cta-button:hover {
background: #0CF2F2;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}
@media (max-width: 768px) {
nav {
flex-direction: column;
padding: 1rem;
}
ul {
margin-top: 1rem;
flex-direction: column;
gap: 1rem;
align-items: center;
}
}
</style>
<nav>
<div class="logo">
<span>Sysmotix</span>
</div>
<ul>
<li><a href="#solutions">Solutions</a></li>
<li><a href="#process">Process</a></li>
<li><a href="#technology">Technology</a></li>
<li><a href="#results">Results</a></li>
<li><a href="#" class="cta-button">Contact Us</a></li>
</ul>
</nav>
`;
}
}
customElements.define('custom-navbar', CustomNavbar); |