Jump to content

Button Randomizer

Recommended Posts

  • Replies 1
  • Views 1.3k
  • Created
  • Last Reply

Add to Code Block

<section id="background">
  <div id="quote-container">
    <h1 id="quote-container-heading">Step Brother Quotes</h1>

    <p id="quote">
      Keep you liver spotted hands off my mother shes a saint
    </p>

    <h5 id="author">-Dale</h5>

    <a class="button">New Quote</a>
  </div>
</section>
<style>
  #background {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#background p {
  font-size: 24px;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script>
<script>
  $(document).ready(function() {

  var quotes = ["Thanks for the job you did", "Made my website look awesome online", "Took my business online"];
  var author = ["-Customer 1", "-Customer 2", "-Customer 3"];

  $('.button').click(function() {

    randomNum = Math.floor(Math.random() * quotes.length);

    $("#quote").text(quotes[randomNum]);

    $("#author").text(author[randomNum]);
});

});
</script>

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.