JSFiddle - React, Tailwind, and code Playground

by Good Muyis

HTML

<div id="cangho-quote">
    <marquee scrollamount="5">Stopping advertising to save money is like stopping your watch to save time. <em><strong>HENRY FORD</strong></em><span class="quote-sep">*</span>
Sell your business the easy way. <strong><em>NOEL PEEBLES</em></strong><span class="quote-sep">*</span>
The purpose of a business is to create and keep a customer. <em><strong>THEODORE LEAVITT</strong></em><span class="quote-sep">*</span>
The internet will help achieve “Friction free capitalism” by putting buyer and seller in direct contact and providing more information to both about each other. <em><strong>BILL GATES</strong></em><span class="quote-sep">*</span>
The essence of good advertising is not to inspire hope but to create greed. <strong><em>CHARLES ADAMS</em></strong><span class="quote-sep">*</span>
The absolute fundamental aim is to make money out of satisfying customers. <em><strong>SIR JOHN EGAN</strong></em><span class="quote-sep">*</span>
Goodwill is the one and only asset that competition cannot undersell or destroy. <strong><em>MARSHALL FIELD</em></strong><span class="quote-sep">*</span>
Business is not financial science, its about trading…buying and selling. Its about creating a product or service so good that people will pay for it. <em><strong>ANITA RODDICK</strong></em><span class="quote-sep">*</span>
Ads are the cave art of the twentieth century.<em><strong> MARSHALL McLUHAM</strong></em><span class="quote-sep">*</span>
They say a year in the internet business is like a dog year…equivalent to seven years in a regular person’s life, in other words ,its evolving fast and faster. <strong>VINTON CERF</strong><span class="quote-sep">*</span>
Your culture is your brand. <em><strong>TONY HSIEH</strong></em><span class="quote-sep">*</span>
The only purpose of a business is to bring in a customer and there are really only two ways to do it through marketing and innovation. <em><strong>NOEL PEEBLES</strong>, Author of Sell Your Business The Tasy...

CSS

.quote-sep {
    padding: 0px 20px
}
#cangho-quote {
    width: 50%;
    height: 40px;
    float: left;
    padding-top: 5px;
}

JavaScript

$('#cangho-quote marquee').hover(function () {
    $(this).attr('scrollamount', 1);
}, function () {
    $(this).attr('scrollamount', 5);
});