JSFiddle - React, Tailwind, and code Playground
by Shree Khanal
HTML
<label class="mvpQuotes" id="rotate">Shree</label> <script type="text/javascript">
JavaScript
$(function() {
var terms = ["I am innovative and motivated software programmer and have a strong interdisciplinary expertise in the field of analyzing,designing and leading software projects.", "I am interested in working in projects involving real time problems and providing direct support to the clients and rectifying problems efficiently.", "During my career I have stood myself firmly as a relentless problem solver,applying my analytical design and technical skills and my ability to work, lead and provide technical support, train and supervise projects as evident from experience as team leader", "I have effectively lead various software projects to success during my career."];
function rotateTerm() {
var ct = $("#rotate").data("term") || 0;
$("#rotate").data("term", ct == terms.length -1 ? 0 : ct + 1).text(terms[ct]).fadeIn()
.delay(7000).fadeOut(200, rotateTerm);
}
$(rotateTerm);
});