Wedding Timeline In SPfx

Introduction

 
In this article we will learn about how to implement a wedding timeline plugin in spfx using wow.js, since wowjs provides animated features that are  leveraged by the plugin.
 

Steps

 
Open a command prompt and create a directory for the SPFx solution.
 
md spfx-WeddingTimeline
 
Navigate to the above-created directory.
 
cd spfx-WeddingTimeline
 
Run the Yeoman SharePoint Generator to create the solution.
 
yo @microsoft/sharepoint
 
Solution Name
 
Hit Enter for the default name (spfx-WeddingTimeline in this case) or type in any other name for your solution.
Selected choice - Hit Enter
 
Target for the component
 
Here, we can select the target environment where we are planning to deploy the client web part; i.e., SharePoint Online or SharePoint OnPremise (SharePoint 2016 onwards).
Selected choice - SharePoint Online only (latest).
 
Place of files
 
We may choose to use the same folder or create a subfolder for our solution.
Selected choice - same folder.
 
Deployment option
 
Selecting Y will allow the app to be deployed instantly to all sites and be accessible everywhere.
Selected choice - N (install on each site explicitly).
 
Permissions to access web APIs
 
Choose if the components in the solution require permission to access web APIs that are unique and not shared with other components in the tenant.
Selected choice - N (solution contains unique permissions)
 
Type of client-side component to create
 
We can choose to create a client-side web part or an extension. Choose the web part option.
Selected choice - WebPart
 
Web part name
 
Hit Enter to select the default name or type in any other name.
Selected choice - WeddingTimeline
 
Web part description
 
Hit Enter to select the default description or type in any other value.
 
Framework to use
 
Select any JavaScript framework to develop the component. Available choices are - No JavaScript Framework, React, and Knockout.
Selected choice - React
 
The Yeoman generator will perform a scaffolding process to generate the solution. The scaffolding process will take a significant amount of time.
 
Once the scaffolding process is completed, lock down the version of project dependencies by running the below command:
 
npm shrinkwrap
 
In the command prompt, type the below command to open the solution in the code editor of your choice.
  1. npm i bootstrap  
  2. npm install --save @types/jquery  
  3. npm i csstype      
  4. npm i wowjs 
 Include jQuery as a dependency using the default generator.

This method can be used in projects that were created with the out of the box generator by doing the following,

On your SPFx project expand the config folder, edit the json file, look for the externals section and add the following dependency.
  1. "externals": {  
  2.   
  3.     "jquery": {  
  4.       "path": "https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js",  
  5.       "globalName": "jQuery"  
  6. }  
Problems I faced
 
To resolve window.WOW declare like below.
  1. declare global {  
  2.   interface Window {  
  3.     WOW:any;  
  4.   }  

Since the jquery parsing takes more time to complete intiate the wow function after parsing like below
  1. window.addEventListener('load'this.handleLoad);  
  2.   
  3. public handleLoad() {  
  4.    let wow = new WOW({  
  5.      boxClass: 'wow',  
  6.      animateClass: 'animated',  
  7.      offset: 0,  
  8.      mobile:true,  
  9.      live: true,  
  10.      scrollContainer: ".content_3f3fd3c2"  
  11.    });  
  12.    wow.init();  
  13.    wow.sync();  
  14.   } 
To import the image in the img tag follow the below model.
  1. const time01: any = require('./images/time-01.jpg');  
  2.   
  3. <img src={time01} alt="" /> 
To implement the plugin
  1.   ($('.timeLine') as any).timeLine({  
  2.     mainColor: '#890025',  
  3.     opacity: '0.85',  
  4.     lineColor: '#890025'  
  5. });  
Where main color, line color can provide as per our need in WeddingTimeline.tsx
  1. import * as React from 'react';  
  2. //import styles from './WeddingTimeline.module.scss';  
  3. import { IWeddingTimelineProps } from './IWeddingTimelineProps';  
  4. const time01: any = require('./images/time-01.jpg');  
  5. const time02: any = require('./images/time-02.jpg');  
  6. const time03: any = require('./images/time-03.jpg');  
  7. const time04: any = require('./images/time-04.jpg');  
  8. const time05: any = require('./images/time-05.jpg');  
  9. import * as $ from 'jquery';  
  10. import 'bootstrap/dist/css/bootstrap.css';  
  11. require('./css/responsive.css');  
  12. require('./css/style1.css');  
  13. import 'bootstrap';  
  14. import * as CSS from 'csstype';  
  15. import { SPComponentLoader } from '@microsoft/sp-loader';  
  16. //SPComponentLoader.loadScript('https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js');  
  17.   
  18. //require('./js/jquery.min.js');  
  19. //require('./js/wow.min.js');  
  20. //declare var WOW;  
  21. declare global {  
  22.   interface Window {  
  23.     WOW:any;  
  24.   }  
  25. }  
  26. require('./js/timeLine.min.js');  
  27. //import WOW from 'wowjs';  
  28. //const {WOW} = require('wowjs');   
  29. //  
  30. //require('./timeLine.min.js');  
  31. //declare var  WOW: any;  
  32. //import  'wow.js';  
  33. import { WOW } from 'wowjs';  
  34. window.WOW = WOW;  
  35. interface Style extends CSS.Properties, CSS.PropertiesHyphen {}   
  36. var divStyle: Style ={   
  37.   color:'Red',    
  38.   'font-size''30px',  
  39.     'font-family''Engagement,cursive'  
  40.         
  41.   };    
  42. export default class WeddingTimeline extends React.Component<IWeddingTimelineProps, {}> {  
  43.   public componentDidMount(){   
  44.       
  45.   /*  var wow = new WOW( 
  46.       { 
  47.         boxClass:     'wow',      // animated element css class (default is wow) 
  48.         animateClass: 'animated', // animation css class (default is animated) 
  49.         offset:       0,          // distance to the element when triggering the animation (default is 0) 
  50.         mobile:       true,       // trigger animations on mobile devices (default is true) 
  51.         live:         true,       // act on asynchronously loaded content (default is true) 
  52.       
  53.         scrollContainer: "#content_3f3fd3c2" // optional scroll container selector, otherwise use window 
  54.       } 
  55.     ); 
  56.     wow.init();*/  
  57.     
  58.    // this.functionOne().done( this.functionTwo() );  
  59.   
  60.    
  61.    ($('.timeLine') as any).timeLine({  
  62.      mainColor: '#890025',  
  63.      opacity: '0.85',  
  64.      lineColor: '#890025'  
  65.  });   
  66.   
  67.   window.addEventListener('load'this.handleLoad);  
  68.    
  69.     
  70.   }    
  71.   /*public functionOne = ()=> { 
  72.  
  73.     var r = $.Deferred(); 
  74.     ($('.timeLine') as any).timeLine({ 
  75.       mainColor: '#890025', 
  76.       opacity: '0.85', 
  77.       lineColor: '#890025' 
  78.   });  
  79.     // Do your whiz bang jQuery stuff here 
  80.     console.log('Function One'); 
  81.  
  82.     return r; 
  83.  
  84. } 
  85.  
  86. public functionTwo = ()=> { 
  87.  
  88.   let wow = new WOW({ 
  89.     boxClass: 'wow', 
  90.     animateClass: 'animated', 
  91.     offset: 0, 
  92.     live: true, 
  93.     scrollContainer: ".content_3f3fd3c2" 
  94.   }); 
  95.   wow.init(); 
  96.   wow.sync(); 
  97.     // Do your whiz bang jQuery stuff here 
  98.     console.log('Function Two'); 
  99.     return null; 
  100.  
  101. }*/  
  102.   
  103.    
  104.   public handleLoad() {  
  105.     let wow = new WOW({  
  106.       boxClass: 'wow',  
  107.       animateClass: 'animated',  
  108.       offset: 0,  
  109.       mobile:true,  
  110.       live: true,  
  111.       scrollContainer: ".content_3f3fd3c2"  
  112.     });  
  113.     wow.init();  
  114.     wow.sync();  
  115.    }  
  116.   public render(): React.ReactElement<IWeddingTimelineProps> {  
  117.      
  118.     return (  
  119.   
  120. <div id="story" className="story-box main-timeline-box">  
  121.   <div className="container">  
  122.     <div className="row">  
  123.       <div className="col-lg-12">  
  124.         <div className="title-box">  
  125.           <h2>Our Story</h2>  
  126.           <p style={divStyle}>Designed by Madhan Thurai N.C. </p>  
  127.         </div>  
  128.       </div>  
  129.     </div>  
  130.       
  131.     <div className="timeLine">  
  132.       <div className="row">  
  133.         <div className="lineHeader hidden-sm hidden-xs"></div>  
  134.         <div className="lineFooter hidden-sm hidden-xs"></div>  
  135.   
  136.           <div className="col-lg-6 col-md-6 col-sm-12 col-xs-12 item" >  
  137.             <div className="caption">  
  138.               <div className="star center-block">  
  139.                 <span className="h3">10</span>  
  140.                 <span>May </span>  
  141.                 <span>2013</span>  
  142.               </div>  
  143.               <div className="image">  
  144.                 <img src={time01} alt="" />  
  145.                 <div className="title">  
  146.                   <h2>First Meet <i className="fa fa-angle-right" aria-hidden="true"></i></h2>  
  147.                 </div>  
  148.               </div>  
  149.               <div className="textContent">  
  150.                 <p className="lead">We met at the wedding of our close friends and immediately found a common language</p>  
  151.               </div>  
  152.             </div>  
  153.           </div>  
  154.           <div className="col-lg-6 col-md-6 col-sm-12 col-xs-12 item">  
  155.             <div className="caption">  
  156.               <div className="star center-block">  
  157.                 <span className="h3">11</span>  
  158.                 <span>Oct</span>  
  159.                 <span>2013</span>  
  160.               </div>  
  161.               <div className="image">  
  162.                 <img src={time02} alt="" />  
  163.                 <div className="title">  
  164.                   <h2>First date <i className="fa fa-angle-right" aria-hidden="true"></i></h2>  
  165.                 </div>  
  166.               </div>  
  167.               <div className="textContent">  
  168.                 <p className="lead">so a year later our first date happened.</p>  
  169.               </div>  
  170.             </div>  
  171.           </div>  
  172.           <div className="col-lg-6 col-md-6 col-sm-12 col-xs-12 item">  
  173.             <div className="caption">  
  174.               <div className="star center-block">  
  175.                 <span className="h3">21</span>  
  176.                 <span>Aug</span>  
  177.                 <span>2013</span>  
  178.               </div>  
  179.               <div className="image">  
  180.                 <img src={time03} alt="" />  
  181.                 <div className="title">  
  182.                   <h2>Proposal <i className="fa fa-angle-right" aria-hidden="true"></i></h2>  
  183.                 </div>  
  184.               </div>  
  185.               <div className="textContent">  
  186.                 <p className="lead">Finally in this day we mutually proposed</p>  
  187.               </div>  
  188.             </div>  
  189.           </div>  
  190.           <div className="col-lg-6 col-md-6 col-sm-12 col-xs-12 item">  
  191.             <div className="caption">  
  192.               <div className="star center-block">  
  193.                 <span className="h3">10</span>  
  194.                 <span>Feb</span>  
  195.                 <span>2021</span>  
  196.               </div>  
  197.               <div className="image">  
  198.                 <img src={time04} alt="" />  
  199.                 <div className="title">  
  200.                   <h2>Engagement <i className="fa fa-angle-right" aria-hidden="true"></i></h2>  
  201.                 </div>  
  202.               </div>  
  203.               <div className="textContent">  
  204.                 <p className="lead">This big day gave an Confirmation</p>  
  205.               </div>  
  206.             </div>  
  207.           </div>  
  208.           <div className="col-lg-6 col-md-6 col-sm-12 col-xs-12 item">  
  209.             <div className="caption">  
  210.               <div className="star center-block">  
  211.                 <span className="h3">05</span>  
  212.                 <span>July</span>  
  213.                 <span>2021</span>  
  214.               </div>  
  215.               <div className="image">  
  216.                 <img src={time05} alt="" />  
  217.                 <div className="title">  
  218.                   <h2>My Wedding <i className="fa fa-angle-right" aria-hidden="true"></i></h2>  
  219.                 </div>  
  220.               </div>  
  221.               <div className="textContent">  
  222.                 <p className="lead">Finally our dreams comes True </p>  
  223.               </div>  
  224.             </div>  
  225.           </div>  
  226.   
  227.       </div>  
  228.     </div>  
  229.       
  230.   </div>  
  231. </div>  
  232.      
  233.     );  
  234.   }  
  235. }  
timeLine.mins.js
  1. (function() {  
  2.     var t, e, n, i, o, r = function(t, e) {  
  3.             return function() {  
  4.                 return t.apply(e, arguments)  
  5.             }  
  6.         },  
  7.         s = [].indexOf || function(t) {  
  8.             for (var e = 0, n = this.length; n > e; e++)  
  9.                 if (e in this && this[e] === t) return e;  
  10.             return -1  
  11.         };  
  12.     e = function() {  
  13.         function t() {}  
  14.         return t.prototype.extend = function(t, e) {  
  15.             var n, i;  
  16.             for (n in e) i = e[n], null == t[n] && (t[n] = i);  
  17.             return t  
  18.         }, t.prototype.isMobile = function(t) {  
  19.             return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(t)  
  20.         }, t.prototype.createEvent = function(t, e, n, i) {  
  21.             var o;  
  22.             return null == e && (e = !1), null == n && (n = !1), null == i && (i = null), null != document.createEvent ? (o = document.createEvent("CustomEvent"), o.initCustomEvent(t, e, n, i)) : null != document.createEventObject ? (o = document.createEventObject(), o.eventType = t) : o.eventName = t, o  
  23.         }, t.prototype.emitEvent = function(t, e) {  
  24.             return null != t.dispatchEvent ? t.dispatchEvent(e) : e in (null != t) ? t[e]() : "on" + e in (null != t) ? t["on" + e]() : void 0  
  25.         }, t.prototype.addEvent = function(t, e, n) {  
  26.             return null != t.addEventListener ? t.addEventListener(e, n, !1) : null != t.attachEvent ? t.attachEvent("on" + e, n) : t[e] = n  
  27.         }, t.prototype.removeEvent = function(t, e, n) {  
  28.             return null != t.removeEventListener ? t.removeEventListener(e, n, !1) : null != t.detachEvent ? t.detachEvent("on" + e, n) : delete t[e]  
  29.         }, t.prototype.innerHeight = function() {  
  30.             return "innerHeight" in window ? window.innerHeight : document.documentElement.clientHeight  
  31.         }, t  
  32.     }(), n = this.WeakMap || this.MozWeakMap || (n = function() {  
  33.         function t() {  
  34.             this.keys = [], this.values = []  
  35.         }  
  36.         return t.prototype.get = function(t) {  
  37.             var e, n, i, o, r;  
  38.             for (r = this.keys, e = i = 0, o = r.length; o > i; e = ++i)  
  39.                 if (n = r[e], n === t) return this.values[e]  
  40.         }, t.prototype.set = function(t, e) {  
  41.             var n, i, o, r, s;  
  42.             for (s = this.keys, n = o = 0, r = s.length; r > o; n = ++o)  
  43.                 if (i = s[n], i === t) return void(this.values[n] = e);  
  44.             return this.keys.push(t), this.values.push(e)  
  45.         }, t  
  46.     }()), t = this.MutationObserver || this.WebkitMutationObserver || this.MozMutationObserver || (t = function() {  
  47.         function t() {  
  48.             "undefined" != typeof console && null !== console && console.warn("MutationObserver is not supported by your browser."), "undefined" != typeof console && null !== console && console.warn("WOW.js cannot detect dom mutations, please call .sync() after loading new content.")  
  49.         }  
  50.         return t.notSupported = !0, t.prototype.observe = function() {}, t  
  51.     }()), i = this.getComputedStyle || function(t) {  
  52.         return this.getPropertyValue = function(e) {  
  53.             var n;  
  54.             return "float" === e && (e = "styleFloat"), o.test(e) && e.replace(o, function(t, e) {  
  55.                 return e.toUpperCase()  
  56.             }), (null != (n = t.currentStyle) ? n[e] : void 0) || null  
  57.         }, this  
  58.     }, o = /(\-([a-z]){1})/g, this.WOW = function() {  
  59.         function o(t) {  
  60.             null == t && (t = {}), this.scrollCallback = r(this.scrollCallback, this), this.scrollHandler = r(this.scrollHandler, this), this.resetAnimation = r(this.resetAnimation, this), this.start = r(this.start, this), this.scrolled = !0, this.config = this.util().extend(t, this.defaults), null != t.scrollContainer && (this.config.scrollContainer = document.querySelector(t.scrollContainer)), this.animationNameCache = new n, this.wowEvent = this.util().createEvent(this.config.boxClass)  
  61.         }  
  62.         return o.prototype.defaults = {  
  63.             boxClass: "wow",  
  64.             animateClass: "animated",  
  65.             offset: 0,  
  66.             mobile: !0,  
  67.             live: !0,  
  68.             callback: null,  
  69.             scrollContainer: null  
  70.         }, o.prototype.init = function() {  
  71.             var t;  
  72.             return this.element = window.document.documentElement, "interactive" === (t = document.readyState) || "complete" === t ? this.start() : this.util().addEvent(document, "DOMContentLoaded"this.start), this.finished = []  
  73.         }, o.prototype.start = function() {  
  74.             var e, n, i, o;  
  75.             if (this.stopped = !1, this.boxes = function() {  
  76.                     var t, n, i, o;  
  77.                     for (i = this.element.querySelectorAll("." + this.config.boxClass), o = [], t = 0, n = i.length; n > t; t++) e = i[t], o.push(e);  
  78.                     return o  
  79.                 }.call(this), this.all = function() {  
  80.                     var t, n, i, o;  
  81.                     for (i = this.boxes, o = [], t = 0, n = i.length; n > t; t++) e = i[t], o.push(e);  
  82.                     return o  
  83.                 }.call(this), this.boxes.length)  
  84.                 if (this.disabled()) this.resetStyle();  
  85.                 else  
  86.                     for (o = this.boxes, n = 0, i = o.length; i > n; n++) e = o[n], this.applyStyle(e, !0);  
  87.             return this.disabled() || (this.util().addEvent(this.config.scrollContainer || window, "scroll"this.scrollHandler), this.util().addEvent(window, "resize"this.scrollHandler), this.interval = setInterval(this.scrollCallback, 50)), this.config.live ? new t(function(t) {  
  88.                 return function(e) {  
  89.                     var n, i, o, r, s;  
  90.                     for (s = [], n = 0, i = e.length; i > n; n++) r = e[n], s.push(function() {  
  91.                         var t, e, n, i;  
  92.                         for (n = r.addedNodes || [], i = [], t = 0, e = n.length; e > t; t++) o = n[t], i.push(this.doSync(o));  
  93.                         return i  
  94.                     }.call(t));  
  95.                     return s  
  96.                 }  
  97.             }(this)).observe(document.body, {  
  98.                 childList: !0,  
  99.                 subtree: !0  
  100.             }) : void 0  
  101.         }, o.prototype.stop = function() {  
  102.             return this.stopped = !0, this.util().removeEvent(this.config.scrollContainer || window, "scroll"this.scrollHandler), this.util().removeEvent(window, "resize"this.scrollHandler), null != this.interval ? clearInterval(this.interval) : void 0  
  103.         }, o.prototype.sync = function() {  
  104.             return t.notSupported ? this.doSync(this.element) : void 0  
  105.         }, o.prototype.doSync = function(t) {  
  106.             var e, n, i, o, r;  
  107.             if (null == t && (t = this.element), 1 === t.nodeType) {  
  108.                 for (t = t.parentNode || t, o = t.querySelectorAll("." + this.config.boxClass), r = [], n = 0, i = o.length; i > n; n++) e = o[n], s.call(this.all, e) < 0 ? (this.boxes.push(e), this.all.push(e), this.stopped || this.disabled() ? this.resetStyle() : this.applyStyle(e, !0), r.push(this.scrolled = !0)) : r.push(void 0);  
  109.                 return r  
  110.             }  
  111.         }, o.prototype.show = function(t) {  
  112.             return this.applyStyle(t), t.className = t.className + " " + this.config.animateClass, null != this.config.callback && this.config.callback(t), this.util().emitEvent(t, this.wowEvent), this.util().addEvent(t, "animationend"this.resetAnimation), this.util().addEvent(t, "oanimationend"this.resetAnimation), this.util().addEvent(t, "webkitAnimationEnd"this.resetAnimation), this.util().addEvent(t, "MSAnimationEnd"this.resetAnimation), t  
  113.         }, o.prototype.applyStyle = function(t, e) {  
  114.             var n, i, o;  
  115.             return i = t.getAttribute("data-wow-duration"), n = t.getAttribute("data-wow-delay"), o = t.getAttribute("data-wow-iteration"), this.animate(function(r) {  
  116.                 return function() {  
  117.                     return r.customStyle(t, e, i, n, o)  
  118.                 }  
  119.             }(this))  
  120.         }, o.prototype.animate = function() {  
  121.             return "requestAnimationFrame" in window ? function(t) {  
  122.                 return window.requestAnimationFrame(t)  
  123.             } : function(t) {  
  124.                 return t()  
  125.             }  
  126.         }(), o.prototype.resetStyle = function() {  
  127.             var t, e, n, i, o;  
  128.             for (i = this.boxes, o = [], e = 0, n = i.length; n > e; e++) t = i[e], o.push(t.style.visibility = "visible");  
  129.             return o  
  130.         }, o.prototype.resetAnimation = function(t) {  
  131.             var e;  
  132.             return t.type.toLowerCase().indexOf("animationend") >= 0 ? (e = t.target || t.srcElement, e.className = e.className.replace(this.config.animateClass, "").trim()) : void 0  
  133.         }, o.prototype.customStyle = function(t, e, n, i, o) {  
  134.             return e && this.cacheAnimationName(t), t.style.visibility = e ? "hidden" : "visible", n && this.vendorSet(t.style, {  
  135.                 animationDuration: n  
  136.             }), i && this.vendorSet(t.style, {  
  137.                 animationDelay: i  
  138.             }), o && this.vendorSet(t.style, {  
  139.                 animationIterationCount: o  
  140.             }), this.vendorSet(t.style, {  
  141.                 animationName: e ? "none" : this.cachedAnimationName(t)  
  142.             }), t  
  143.         }, o.prototype.vendors = ["moz""webkit"], o.prototype.vendorSet = function(t, e) {  
  144.             var n, i, o, r;  
  145.             i = [];  
  146.             for (n in e) o = e[n], t["" + n] = o, i.push(function() {  
  147.                 var e, i, s, a;  
  148.                 for (s = this.vendors, a = [], e = 0, i = s.length; i > e; e++) r = s[e], a.push(t["" + r + n.charAt(0).toUpperCase() + n.substr(1)] = o);  
  149.                 return a  
  150.             }.call(this));  
  151.             return i  
  152.         }, o.prototype.vendorCSS = function(t, e) {  
  153.             var n, o, r, s, a, l;  
  154.             for (a = i(t), s = a.getPropertyCSSValue(e), r = this.vendors, n = 0, o = r.length; o > n; n++) l = r[n], s = s || a.getPropertyCSSValue("-" + l + "-" + e);  
  155.             return s  
  156.         }, o.prototype.animationName = function(t) {  
  157.             var e;  
  158.             try {  
  159.                 e = this.vendorCSS(t, "animation-name").cssText  
  160.             } catch (n) {  
  161.                 e = i(t).getPropertyValue("animation-name")  
  162.             }  
  163.             return "none" === e ? "" : e  
  164.         }, o.prototype.cacheAnimationName = function(t) {  
  165.             return this.animationNameCache.set(t, this.animationName(t))  
  166.         }, o.prototype.cachedAnimationName = function(t) {  
  167.             return this.animationNameCache.get(t)  
  168.         }, o.prototype.scrollHandler = function() {  
  169.             return this.scrolled = !0  
  170.         }, o.prototype.scrollCallback = function() {  
  171.             var t;  
  172.             return !this.scrolled || (this.scrolled = !1, this.boxes = function() {  
  173.                 var e, n, i, o;  
  174.                 for (i = this.boxes, o = [], e = 0, n = i.length; n > e; e++) t = i[e], t && (this.isVisible(t) ? this.show(t) : o.push(t));  
  175.                 return o  
  176.             }.call(this), this.boxes.length || this.config.live) ? void 0 : this.stop()  
  177.         }, o.prototype.offsetTop = function(t) {  
  178.             for (var e; void 0 === t.offsetTop;) t = t.parentNode;  
  179.             for (e = t.offsetTop; t = t.offsetParent;) e += t.offsetTop;  
  180.             return e  
  181.         }, o.prototype.isVisible = function(t) {  
  182.             var e, n, i, o, r;  
  183.             return n = t.getAttribute("data-wow-offset") || this.config.offset, r = this.config.scrollContainer && this.config.scrollContainer.scrollTop || window.pageYOffset, o = r + Math.min(this.element.clientHeight, this.util().innerHeight()) - n, i = this.offsetTop(t), e = i + t.clientHeight, o >= i && e >= r  
  184.         }, o.prototype.util = function() {  
  185.             return null != this._util ? this._util : this._util = new e  
  186.         }, o.prototype.disabled = function() {  
  187.             return !this.config.mobile && this.util().isMobile(navigator.userAgent)  
  188.         }, o  
  189.     }()  
  190. }).call(this),  
  191.     function(t) {  
  192.         t.fn.timeLine = function(e) {  
  193.             "use strict";  
  194.             var n = t.extend({  
  195.                 myTimeLine: this,  
  196.                 mainColor: "",  
  197.                 opacity: "0.5",  
  198.                 offset: "400",  
  199.                 itemAnimateDuration: 2,  
  200.                 lineColor: "#DDDDDD",  
  201.                 LeftAnimation: "rotateInUpRight",  
  202.                 RightAnimation: "rotateInUpLeft"  
  203.             }, e);  
  204.             t(document).ready(function() {  
  205.                 function e(t) {  
  206.                     return t = t.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i), t && 4 === t.length ? "#" + ("0" + parseInt(t[1], 10).toString(16)).slice(-2) + ("0" + parseInt(t[2], 10).toString(16)).slice(-2) + ("0" + parseInt(t[3], 10).toString(16)).slice(-2) : ""  
  207.                 }  
  208.   
  209.                 function i(t) {  
  210.                     var e = /^#[0-9A-F]{3,6}$/i.test(t);  
  211.                     return !e && v ? (console.log("%cWarning!!! Unkown or undefined color format, please set your color format like this example #FFFFFF or #FFF. default color will be set""font-size: 21px; color: red"), v = !1, [e, "#DDD"]) : [e, t]  
  212.                 }  
  213.   
  214.                 function o(t) {  
  215.                     var o = i(t)[0],  
  216.                         r = "#b50000",  
  217.                         s = "#5E0000";  
  218.                     if (o) {  
  219.                         var a = t;  
  220.                         t && 4 == t.length && (a = t.replace(/[0-9A-F]{1}/gi, "$&$&"));  
  221.                         var l = a,  
  222.                             c = /^#([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})$/,  
  223.                             u = c.exec(l),  
  224.                             d = "rgba(" + parseInt(u[1], 16) + "," + parseInt(u[2], 16) + "," + parseInt(u[3], 16) + "," + n.opacity + ")",  
  225.                             h = "rgba(" + (parseInt(u[1], 16) - 94 <= 0 ? 0 : parseInt(u[1], 16) - 94) + "," + parseInt(u[2], 16) + "," + parseInt(u[3], 16) + ")";  
  226.                         return [d, e(h)]  
  227.                     }  
  228.                     return [r, s]  
  229.                 }  
  230.   
  231.                 function r(t) {  
  232.                     f.eq(t).animate({  
  233.                         bottom: "10px",  
  234.                         opacity: 1  
  235.                     }, 2e3)  
  236.                 }  
  237.   
  238.                 function s() {  
  239.                     p.after('<div class="controll"><i style="font-size: 250px" class="fa fa-play-circle" aria-hidden="true"></i></div>');  
  240.                     var e = h.find(".controll i");  
  241.                     e.click(function() {  
  242.                         t(this).fadeOut(200), t(this).parent().fadeOut(200), console.log(this), t(this).parents().eq(1).find("video").get(0).play(), t(this).parents().eq(1).find("video").on("ended"function() {  
  243.                             t(this).parent().find(".controll").fadeIn(200), t(this).parent().find(".controll i").fadeIn(200), t(this).get(0).load()  
  244.                         })  
  245.                     }), p.click(function() {  
  246.                         t(this).get(0).paused || (t(this).get(0).pause(), t(this).parent().find(".controll").fadeIn(200), t(this).parent().find(".controll i").fadeIn(200), console.log(this))  
  247.                     })  
  248.                 }  
  249.   
  250.                 function a() {  
  251.                     var e = o(n.mainColor)[0],  
  252.                         r = o(n.mainColor)[1];  
  253.                     for (u = 0; u < h.length; u++) u % 2 == 0 ? h.eq(u).addClass("wow " + n.LeftAnimation).attr("data-wow-offset", n.offset).attr("data-wow-duration", n.itemAnimateDuration + "s") : h.eq(u).addClass("wow pull-right " + n.RightAnimation).attr("data-wow-offset", n.offset).attr("data-wow-duration", n.itemAnimateDuration + "s");  
  254.                     n.myTimeLine.find(".pull-right").attr("data-wow-delay""0.5s"), h.find(".title").css({  
  255.                         backgroundColor: e  
  256.                     }), h.find(".star").css({  
  257.                         backgroundColor: e  
  258.                     }), f.css({  
  259.                         bottom: d + "px",  
  260.                         opacity: 0,  
  261.                         cursor: "pointer"  
  262.                     }), f.click(function(e) {  
  263.                         t(e.target).closest(".caption").find(".textContent").stop(!0, !1), t(e.target).closest(".caption").find(".textContent").hasClass("in") ? (t(e.target).closest(".caption").find(".textContent").slideUp(400).removeClass("in"), t(e.target).closest(".caption").find(".title i").css({  
  264.                             transform: "rotate(0deg)"  
  265.                         })) : (t(e.target).closest(".caption").find(".textContent").slideDown(400).addClass("in"), t(e.target).closest(".caption").find(".title i").css({  
  266.                             transform: "rotate(90deg)",  
  267.                             transition: "transform 0.4s ease-out"  
  268.                         }))  
  269.                     }), m.find("p").css({  
  270.                         borderLeft: "5px solid " + e  
  271.                     }), m.hide(), t("head").append("<style>.timeLine .row .item .caption .image .title:before{border-top: 10px solid " + r + "}.timeLine .row .item .caption .star:before{border-right: 10px solid " + r + "}.timeLine .row .pull-right:before,.timeLine .row .item:before{border: 3px solid " + e + "}.timeLine .row .lineHeader:after{background-color: " + i(n.lineColor)[1] + "}.timeLine .row .lineHeader:before,.timeLine .row .lineFooter:before{color: " + i(n.lineColor)[1] + "}</style>"), (new WOW).init()  
  272.                 }  
  273.   
  274.                 function l() {  
  275.                     for (c = 1e3 * (n.itemAnimateDuration - .75 * n.itemAnimateDuration), t(window).scroll(function() {  
  276.                             for (u = 0; u < f.length; u++) "visible" != h.eq(u).css("visibility") || h.eq(u).hasClass("done") || (h.eq(u).addClass("done"), window.setTimeout(r, c, u))  
  277.                         }), u = 0; u < f.length; u++) "visible" != h.eq(u).css("visibility") || h.eq(u).hasClass("done") || (h.eq(u).addClass("done"), window.setTimeout(r, c, u));  
  278.                     s()  
  279.                 }  
  280.                 var c, u, d = 80,  
  281.                     h = n.myTimeLine.find(".item"),  
  282.                     f = h.find(".title"),  
  283.                     p = h.find("video"),  
  284.                     m = h.find(".textContent"),  
  285.                     v = !0;  
  286.                 a(), window.setTimeout(l, 1e3)  
  287.             })  
  288.         }  
  289.     }(jQuery);  
Expected Output
 
 

Conclusion

 
In this article, we learned how to implement a wedding timeline in our spfx component. I hope this helps someone. Happy coding :)