Brand Design
Custom Logos
Visual Identity
Consistent Branding
Social Media Advertising
Targeted Reach
Platform Strategy
ROI Optimisation
Influencer Marketing
Authentic Reach
Tailored Campaigns
Performance Tracking
0
PROJECTS
0
HAPPY CLIENTS
0
AWARDS RECEIVED
0
TEAM MEMBERS
|
const text = "Custom Work? Bring It On!";
let i = 0;
let hasTyped = false;
function typeWriter() {
if (i < text.length) {
document.getElementById("typewriter").innerHTML += text.charAt(i);
i++;
setTimeout(typeWriter, 120);
}
}
function isInViewport(el) {
const rect = el.getBoundingClientRect();
return rect.top = 0;
}
window.addEventListener('scroll', function () {
const section = document.getElementById('typewriter-section');
if (!hasTyped && isInViewport(section)) {
hasTyped = true;
typeWriter();
}
});
.cursor {
display: inline-block;
animation: blink 1s steps(2, start) infinite;
color: white;
font-weight: bold;
}
@keyframes blink {
to { visibility: hidden; }
}
|
