how make it different animation for letters?

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
manuel_songokuh
 
 
Posts: 147
Joined: Tue May 30, 2017 8:47 pm

how make it different animation for letters?

Post by manuel_songokuh »

hi

i wish to use in WWB: animation for each letter (but different animation)..
see this code html:
<quadro>
<principale>O<span>rientamento</span>P<span>rofessionale</span>E<span>mpowerment</span>N<span>ews</span></principale>
</quadro>

file css:
@keyframes shrinkHide {
0% {
opacity: .5;
width: 172px;
}
20% {
width: 186px;
}
100% {
opacity: 0;
width: 0;
}
}

principale {
font-size:2rem;
color:#00b3ff;
font-weight:600;
letter-spacing:-.025em;
line-height:1.2;
font-family:Bellota;
margin:0 0 24px
}
quadro {
font-family:sans-serif;
padding-bottom:16px;
text-align:center
}
quadro principale span {
animation:shrinkHide 4s cubic-bezier(.175,.885,.32,1.275) 2s forwards;
display:inline-block;
font-weight:300;
opacity:.5
}

but i wish convert in WWB original with STYLE or CSS ANIMATION MANAGER, but is impossible, because
<span> </span> has not this in wwb different..

there is idea for trick ?
User avatar
Pablo
 
Posts: 21715
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: how make it different animation for letters?

Post by Pablo »

manuel_songokuh
 
 
Posts: 147
Joined: Tue May 30, 2017 8:47 pm

Re: how make it different animation for letters?

Post by manuel_songokuh »

User avatar
Pablo
 
Posts: 21715
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: how make it different animation for letters?

Post by Pablo »

For that, you will need a custom script.
User avatar
BaconFries
 
 
Posts: 5369
Joined: Thu Aug 16, 2007 7:32 pm

Re: how make it different animation for letters?

Post by BaconFries »

Maybe the following script will be of interest...Note some knowledge of HTML/jQuery is needed to implement into WWB.
https://textillate.js.org/
manuel_songokuh
 
 
Posts: 147
Joined: Tue May 30, 2017 8:47 pm

Re: how make it different animation for letters?

Post by manuel_songokuh »

I used script html but I wish try in wwb original, then wwb cannot do it, I'm right?
User avatar
Pablo
 
Posts: 21715
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: how make it different animation for letters?

Post by Pablo »

There is no standard solution for this, so you will needs custom script.
Post Reply