🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

A jQuery plugin for creating marker animations that progressively highlight specified text when they become visible within the viewport.

Highlight text-highlighting

Documentation

jQuery Marker Animation

npm version Build Status Coverage Status CodeFactor License: MIT

Read this in other languages: English, 日本語.

jQuery plugin to add under line animation like highlighter.

Demonstration

Screenshot

Behavior

Behavior

Installation

Use from download

Download Release version and enqueue script.

<script type="text/javascript" src="/assets/jquery.marker-animation.min.js"></script>

Use from npm

https://www.npmjs.com/package/jquery.marker-animation

npm install --save jquery.marker-animation

for WordPress

WordPress

GitHub

Usage

Hello, Dolly <span class="marker-animation">Well, hello, Dolly</span> Hello, Dolly
<script>     $('.marker-animation').markerAnimation(); </script>

Options

color

Set the color of line

$('.marker-animation').markerAnimation({     color: '#fe9' });

thickness

Set the thickness of line

$('.marker-animation').markerAnimation({     thickness: '.6em' });

duration

Set the time to complete drawing a line

$('.marker-animation').markerAnimation({     duration: '2s' });

delay

Set the time to start drawing a line

$('.marker-animation').markerAnimation({     duration: '.1s' });

font_weight

Set the thickness of characters

$('.marker-animation').markerAnimation({     font_weight: 'bold' });

[default = bold]
If you do not want to make it bold, please set null.

repeat

Set whether to repeat the animation

$('.marker-animation').markerAnimation({     repeat: false });

If this set to true, the animation will be executed again when it is off screen and displayed again.

stripe

Set whether to make it stripe design

$('.marker-animation').markerAnimation({     stripe: false });

If this set to true, the animation will not be executed.

stripe

How to set the value for each

You can set options in the following format.

data-ma_[option name] 

e.g. Change color

Hello, Dolly <span class="marker-animation" data-ma_color="red">Well, hello, Dolly</span> Hello, Dolly

In this example, the color of the line is red.

e.g Multiple options

Hello, Dolly <span class="marker-animation" data-ma_repeat="true" data-ma_font_weight="null" data-ma_delay="2s">Well, hello, Dolly</span> Hello, Dolly

In this example, the options below are set.

  • Repeat animation
  • Not bold
  • 2sec delay animation

You May Also Like