Hi,
I am looking to add a changing text to my website, I want it to look like this:
Become a GÖÖD Partner – ÖÖD House & Hotels Franchise
Does anybody know how to create this on Wix Editor or Velo on the standard Wix site?
Hi,
I am looking to add a changing text to my website, I want it to look like this:
Become a GÖÖD Partner – ÖÖD House & Hotels Franchise
Does anybody know how to create this on Wix Editor or Velo on the standard Wix site?
either add code (adjust to suit requirements)
:root {
--line-width: 2px; /* Width of the blinking cursor */
--line-height: 1.5ch; /* Height of the blinking cursor */
--line-color: #333; /* Color of the blinking cursor */
--line-position: 6px; /* Vertical position of the blinking cursor */
}
.sr-only:not(:focus):not(:active) {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap;
width: 1px;
}
.typing .rich-text__text {
position: relative;
display: inline;
}
.typing .rich-text__text::after {
content: '';
height: var(--line-height);
width: var(--line-width);
background-color: var(--line-color);
position: absolute;
right: -8px;
bottom: var(--line-position);
animation: blink 0.4s both infinite;
}
.hide .rich-text__text::after {
display: none;
}
@keyframes blink {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
or use app