Typing
Typing Effect allows you to generate a shortcode that will ‘type out’ words on to a page or post, in a widget or directly in a theme or template file.
Default
Use @Html.LLG().Typing()
method to create a typing
Our template is
@Html.LLG().Typing()
.Text("beautiful, super fast, so clean, awesome!")
Speed & Back Speed
use .BackSpeed(int backSpeed)
method to set speed
Speed
Our template is
Back Speed
Our template is
@Html.LLG().Typing()
.Text("beautiful, super fast, so clean, awesome!")
.Speed(80)
@Html.LLG().Typing()
.Text("beautiful, super fast, so clean, awesome!")
.BackSpeed(75)
Loop
use .Loop(bool loop)
method to set Loop, default value is true
Our template is
@Html.LLG().Typing()
.Text("beautiful, super fast, so clean, awesome!")
.Loop(false)
Delay
use .Delay(int delay)
method to set Delay
Our template is
@Html.LLG().Typing()
.Text("beautiful, super fast, so clean, awesome!")
.Delay(2500)
- Contents
- Default
- Speed & BackSpeed
- Loop
- Delay
- Methods