انیمیشن زیبا برای نمایش تولتیپ - Tooltip Animations ( نمونه 4)

ساخت وبلاگ

{

const config = {

in: {

base: {

duration: 800,

easing: 'easeOutElastic',

translateY: [60,0],

scale: [0.5,1],

opacity: {

value: 1,

easing: 'linear',

duration: 100

}

},

path: {

duration: 1200,

delay: 50,

easing: 'easeOutElastic',

elasticity: 700,

d: 'M 22,74.2 22,202 C 22,202 82,202 103,202 124,202 184,202 184,202 L 200,219 216,202 C 216,202 274,202 297,202 320,202 378,202 378,202 L 378,74.2 C 378,74.2 318,73.7 200,73.7 82,73.7 22,74.2 22,74.2 Z'

},

content: {

duration: 300,

delay: 100,

easing: 'easeOutQuint',

translateY: [20,0],

opacity: {

value: 1,

easing: 'linear',

duration: 100

}

},

trigger: {

translateY: [

{value: '-50%', duration: 100, easing: 'easeInQuad'},

{value: ['50%','0%'], duration: 100, easing: 'easeOutQuad'}

],

opacity: [

{value: 0, duration: 100, easing: 'easeInQuad'},

{value: 1, duration: 100, easing: 'easeOutQuad'}

],

color: {

value: '#6fbb95',

duration: 1,

delay: 100,

easing: 'easeOutQuad'

}

}

},

out: {

base: {

duration: 200,

easing: 'easeInQuad',

translateY: 60,

scale: 0.5,

opacity: {

value: 0,

delay: 100,

duration: 100,

easing: 'linear'

}

},

path: {

duration: 200,

easing: 'easeInQuad',

d: 'M 22,108 22,236 C 22,236 64,216 103,212 142,208 184,212 184,212 L 200,229 216,212 C 216,212 258,207 297,212 336,217 378,236 378,236 L 378,108 C 378,108 318,83.7 200,83.7 82,83.7 22,108 22,108 Z'

},

content: {

duration: 100,

easing: 'easeInQuad',

translateY: 20,

opacity: {

value: 0,

easing: 'linear'

}

},

trigger: {

translateY: [

{value: '-50%', duration: 100, easing: 'easeInQuad'},

{value: ['50%','0%'], duration: 100, easing: 'easeOutQuad'}

],

opacity: [

{value: 0, duration: 100, easing: 'easeInQuad'},

{value: 1, duration: 100, easing: 'easeOutQuad'}

],

color: {

value: '#666',

duration: 1,

delay: 100,

easing: 'easeOutQuad'

}

}

}

};

const tooltip = document.querySelector('.tooltip');

class Tooltip {

constructor(el) {

this.DOM = {};

this.DOM.el = el;

this.DOM.trigger = this.DOM.el.querySelector('.tooltip__trigger');

this.DOM.triggerSpan = this.DOM.el.querySelector('.tooltip__trigger-text');

this.DOM.base = this.DOM.el.querySelector('.tooltip__base');

this.DOM.shape = this.DOM.base.querySelector('.tooltip__shape');

if( this.DOM.shape ) {

this.DOM.path = this.DOM.shape.childElementCount > 1 ? Array.from(this.DOM.shape.querySelectorAll('path')) : this.DOM.shape.querySelector('path');

}

this.DOM.deco = this.DOM.base.querySelector('.tooltip__deco');

this.DOM.content = this.DOM.base.querySelector('.tooltip__content');

this.DOM.letters = this.DOM.content.querySelector('.tooltip__letters');

if( this.DOM.letters ) {

// Create spans for each letter.

charming(this.DOM.letters);

// Redefine content.

this.DOM.content = this.DOM.letters.querySelectorAll('span');

}

this.initEvents();

}

initEvents() {

this.mouseenterFn = () => {

this.mouseTimeout = setTimeout(() => {

this.isShown = true;

this.show();

}, 75);

}

this.mouseleaveFn = () => {

clearTimeout(this.mouseTimeout);

if( this.isShown ) {

this.isShown = false;

this.hide();

}

}

this.DOM.trigger.addEventListener('mouseenter', this.mouseenterFn);

this.DOM.trigger.addEventListener('mouseleave', this.mouseleaveFn);

this.DOM.trigger.addEventListener('touchstart', this.mouseenterFn);

this.DOM.trigger.addEventListener('touchend', this.mouseleaveFn);

}

show() {

this.animate('in');

}

hide() {

this.animate('out');

}

animate(dir) {

if ( config[dir].base ) {

anime.remove(this.DOM.base);

let baseAnimOpts = {targets: this.DOM.base};

anime(Object.assign(baseAnimOpts, config[dir].base));

}

if ( config[dir].shape ) {

anime.remove(this.DOM.shape);

let shapeAnimOpts = {targets: this.DOM.shape};

anime(Object.assign(shapeAnimOpts, config[dir].shape));

}

if ( config[dir].path ) {

anime.remove(this.DOM.path);

let shapeAnimOpts = {targets: this.DOM.path};

anime(Object.assign(shapeAnimOpts, config[dir].path));

}

if ( config[dir].content ) {

anime.remove(this.DOM.content);

let contentAnimOpts = {targets: this.DOM.content};

anime(Object.assign(contentAnimOpts, config[dir].content));

}

if ( config[dir].trigger ) {

anime.remove(this.DOM.triggerSpan);

let triggerAnimOpts = {targets: this.DOM.triggerSpan};

anime(Object.assign(triggerAnimOpts, config[dir].trigger));

}

if ( config[dir].deco ) {

anime.remove(this.DOM.deco);

let decoAnimOpts = {targets: this.DOM.deco};

anime(Object.assign(decoAnimOpts, config[dir].deco));

}

}

destroy() {

this.DOM.trigger.removeEventListener('mouseenter', this.mouseenterFn);

this.DOM.trigger.removeEventListener('mouseleave', this.mouseleaveFn);

this.DOM.trigger.removeEventListener('touchstart', this.mouseenterFn);

this.DOM.trigger.removeEventListener('touchend', this.mouseleaveFn);

}

}

const init = (() => new Tooltip(tooltip))();

};

سون لرن • آموزش...
ما را در سایت سون لرن • آموزش دنبال می کنید

برچسب : انیمیشن,نمایش,تولتیپ,نمونه, نویسنده : استخدام کار 7learn بازدید : 271 تاريخ : جمعه 7 مهر 1396 ساعت: 16:31

خبرنامه