How can I get my cards to display and function properly?

Viewed 26

Hello I have created a set of cards and they're not displaying in a row how I have set them up in my css. Also, there are a set directional buttons for each of the cards, but they end up overlapping each other in the first card. I created different class names for the button sets, but it's not working in my js. I have provided an example and my code of what I am trying to do.

I'm trying to set up this design layout with the cards:

   Card 1  Card 2
   Card 3  Card 4
   Card 5  Card 6
   Card 7  Card 8
// etc..

var $card = $('.card1');
var lastCard = $(".card-list .card").length - 1;

//Button Set One
$('.next').click(function() {
  var prependList = function() {
    if ($('.card1').hasClass('activeNow')) {
      var $slicedCard = $('.card1').slice(lastCard).removeClass('transformThis activeNow');
      $('.card-list').prepend($slicedCard);
    }
  }
  $('li').last().removeClass('transformPrev').addClass('transformThis').prev().addClass('activeNow');
  setTimeout(function() {
    prependList();
  }, 150);
});

$('.prev').click(function() {
  var appendToList = function() {
    if ($('.card1').hasClass('activeNow')) {
      var $slicedCard = $('.card1').slice(0, 1).addClass('transformPrev');
      $('.card-list').append($slicedCard);
    }
  }

  $('li').removeClass('transformPrev').last().addClass('activeNow').prevAll().removeClass('activeNow');
  setTimeout(function() {
    appendToList();
  }, 150);
});

//Button Set Two
$('.next2').click(function() {
  var prependList = function() {
    if ($('.card1').hasClass('activeNow')) {
      var $slicedCard = $('.card1').slice(lastCard).removeClass('transformThis activeNow');
      $('.card-list').prepend($slicedCard);
    }
  }
  $('li').last().removeClass('transformPrev').addClass('transformThis').prev().addClass('activeNow');
  setTimeout(function() {
    prependList();
  }, 150);
});

$('.prev2').click(function() {
  var appendToList = function() {
    if ($('.card1').hasClass('activeNow')) {
      var $slicedCard = $('.card1').slice(0, 1).addClass('transformPrev');
      $('.card-list').append($slicedCard);
    }
  }

  $('li').removeClass('transformPrev').last().addClass('activeNow').prevAll().removeClass('activeNow');
  setTimeout(function() {
    appendToList();
  }, 150);
});
.sturow>* {
  flex: 1;
  
}
/*---Studio List---*/
.stucontainer {
  width: 100%;
  height: 900px;
  padding: 50px 80px;
}

/*---Card One---*/


/*---Card Body---*/

.card1 {
  position: relative;
  top: 45px;
  right: 300px;
  margin: auto;
  border: none;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  border-radius: 20px;
  width: 420px;
  height: 330px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}






.card1 .roomB {
  position: relative;
  left: 5px;
  color: #ffffff;
}

.card1 .roomC {
  position: relative;
  left: 5px;
  color: #ffffff;
}

.stuLocation {
  position: relative;
  top: -10px;
  left: -65px;
}
/*---Like Button---*/

.btns1 {
  position: relative;
  top: -50px;
  left: -50px;
}


.card1.card-has-bg {
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  background-size: 130%;
  background-repeat: no-repeat;
  background-position: center center;
}

.card1.card-has-bg:hover {
  transform: scale(0.98);
  box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
  background-size: 130%;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card1.card-has-bg:hover .card-img-overlay {
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #d2d2d25c 100%);
}

.card1 .card-body {
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card1:hover {
  cursor: pointer;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card1:hover .card-body {
  margin-top: 30px;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card1 .card-img-overlay {
  background-color: rgba(138, 138, 138, 0.425);
}


/*---Card Body---*/


/*---Heart Button---*/

.btns1 {
  position: relative;
  top: -70px;
  left: 300px;
}


/*---Heart Button---*/


/*---Star Rating---*/

.rating-box {
  position: relative;
  top: -30px;
  left: -60px;
  border-radius: 15px !important;
  width: 105px;
  height: 15px;
  margin: auto;
  margin-bottom: 10px;
  background-color: #e5e5e55a;
  border: 1px;
  box-sizing: border-box;
}

svg {
  position: relative;
  top: -7px;
  width: 20px;
  height: 20px;
  padding-left: 3px;
  padding-right: 3px;
}


/* hide radio buttons */

input[name="star"] {
  display: inline-block;
  width: 0;
  opacity: 0;
  margin-left: -2px;
}


/* hide source svg */

.star-source {
  width: 0;
  height: 0;
  visibility: hidden;
}


/* set initial color to transparent so fill is empty*/

.star {
  color: #7a7a7a;
  transition: color 0.2s ease-in-out;
}


/* set direction to row-reverse so 5th star is at the end and ~ can be used to fill all sibling stars that precede last starred element*/

.star-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

label:hover~label .star,
svg.star:hover,
input[name="star"]:focus~label .star,
input[name="star"]:checked~label .star {
  color: #fbff28;
}

input[name="star"]:checked+label .star {
  animation: starred 0.5s;
}

input[name="star"]:checked+label {
  animation: scaleup 1s;
}

@keyframes scaleup {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

@keyframes starred {
  from {
    color: #d6ca2a;
  }
  to {
    color: #d6ca2a;
  }
}


/*---Star Rating---*/

@media (max-width: 768px) {
  .card {
    min-height: 350px;
  }
}

@media (max-width: 420px) {
  .card {
    min-height: 300px;
  }
}


/*---Card stack---*/


.stucontainer .card1-stack {
  width: 500px;
  height: 250px;
  position: absolute;
  margin: 20px auto;
}

.stucontainer .card1-stack .buttons {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.46);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  left: 0;
  top: 55%;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 35px;
  text-decoration: none;
  font-size: 22px;
  z-index: 100;
  outline: none;
  transition: all 0.2s ease;
}

.stucontainer .card1-stack .buttons:hover {
  transform: scale(1.3, 1.3);
}

.stucontainer .card1-stack .prev {
  left: 15px;
  right: auto;
}

.container .card1-stack .next {
  left: auto;
  right: 15px;
}

.stucontainer .card1-stack .carousel .buttons:hover {
  color: #C01313;
  background: #fff;
}

.stucontainer .card1-stack .card-list {
  width: 300px;
}

.stucontainer .card1-stack .card-list__image {
  height: 200px;
}

.stucontainer .card1-stack .card-list__text {
  color: #fff;
  font-weight: 300;
}

.stucontainer .card1-stack .card-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 100ms ease-in-out;
  border-radius: 10px;
  position: absolute;
  list-style: none;
  height: 300px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  -webkit-box-shadow: 0 2px 15px 1px rgba(225, 225, 225, 0.5);
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.5);
}

.stucontainer .card1-stack .card-list li:nth-child(1) {
  top: 24px;
  width: 60%;
  /* animation: scaleCard 100ms; */
}

.stucontainer .card1-stack .card-list li:nth-child(2) {
  top: 36px;
  width: 70%;
}

.stucontainer .card1-stack .card-list li:nth-child(3) {
  top: 48px;
  width: 80%;
}

.stucontainer .card1-stack .card-list li:nth-child(4) {
  top: 60px;
  width: 90%;
}

.stucontainer .card1-stack .card-list li:nth-child(5) {
  top: 72px;
  width: 100%;
}

.container .card1-stack:hover>.buttons.prev {
  display: block;
  animation: bounceInLeft 200ms;
}

.stucontainer .card1-stack:hover>.buttons.next {
  display: block;
  animation: bounceInRight 200ms;
}

.transformThis {
  animation: scaleDown 500ms;
}

.transformPrev {
  animation: scaleUp 100ms;
  display: none;
}

@keyframes scaleUp {
  0% {
    transform: scale(1.2) translateY(50px);
    opacity: 0;
  }
  20% {
    transform: scale(1.15) translateY(40px);
    opacity: 0.1;
  }
  40% {
    transform: scale(1.1) translateY(30px);
    opacity: 0.2;
  }
  60% {
    transform: scale(1.05) translateY(20px);
    opacity: 0.4;
  }
  80% {
    transform: scale(1.01) translateY(10px);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  20% {
    transform: scale(1.01) translateY(20px);
    opacity: 0.8;
  }
  40% {
    transform: scale(1.05) translateY(40px);
    opacity: 0.4;
  }
  60% {
    transform: scale(1.1) translateY(60px);
    opacity: 0.2;
  }
  80% {
    transform: scale(1.15) translateY(80px);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.2) translateY(100px);
    opacity: 0;
  }
}

@keyframes scaleCard {
  0% {
    top: 5px;
  }
  100% {
    top: 24px;
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(0);
  }
}


/*---Card stack---*/


/*---Card One---*/
<script src="https://code.jquery.com/jquery-3.6.1.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">

<!-- Page section example for content below the video header -->
<section class="my-5">
  <div class="container">
    <!--Studio List-->
    <div class="row">
      <!--Studio One-->
      <div class="stuOne mx-auto">
        <div class="stucontainer">
          <div class="card1-stack">
            <!---Button for scroll-->
            <button class="buttons prev"><</button>
            <!---Button for scroll-->
            <ul class="card-list">

              <!--Studio Room 2-->
              <li class="card1 text-white card-has-bg click-col" style="background-image:url('https://images.adsttc.com/media/images/5d1b/e492/284d/d1b1/8300/00a1/large_jpg/feature_-_FFX_SDC_01.jpg?1562109025');">
                <div class="card-img-overlay d-flex flex-column">
                  <div class="card-body">
                    <div class="media">
                      <div class="media-body">
                        <h6 class="roomC mb-2"><strong>Room C</strong></h6>
                      </div>
                    </div>
                  </div>
                </div>
              </li>
              <!--Studio Room 2-->

              <!--Studio Room 1-->
              <li class="card1 text-white card-has-bg click-col" style="background-image:url('https://www.unifiedmanufacturing.com/blog/wp-content/uploads/2021/02/Nightbird-Recording-Studios-Pandemic.jpg');">
                <div class="card-img-overlay d-flex flex-column">
                  <div class="card-body">
                    <div class="media">
                      <div class="media-body">
                        <h6 class="roomB mb-2"><strong>Room B</strong></h6>
                      </div>
                    </div>
                  </div>
                </div>
              </li>
              <!--Studio Room 1-->

              <!--Studio Front Page-->

              <!--Studio Front Page-->
              <li class="card1 text-white card-has-bg click-col" style="background-image:url('https://westlakepro.com/wp-content/uploads/2020/01/SnoopDoggStudio.jpg');">
                <div class="card-img-overlay d-flex flex-column">
                  <div class="card-body">
                    <div class="media">
                      <img class="mr-3 rounded-circle" id="stuImage" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQxUXsEFPioqCqDqgp7MeLNpM7iZYL6mt97ElI3LwCnuFoarwmSWbJquoEwbi1AJSRzXBs&usqp=CAU" alt="Generic placeholder image" style="max-width:50px; position: relative; top: 50px; left: -150px;">
                      


                  </div>
                </div>
              </li>
              <!--Studio Front Page-->


            </ul>
            <button class="buttons next">></button>
          </div>
        </div>
      </div>
      <!--Studio One-->

      <!--Studio Two-->
      <div class="stuOne mx-auto">
        <div class="stucontainer">
          <div class="card1-stack">
            <!---Button for scroll-->
            <button class="buttons prev2"><</button>
            <!---Button for scroll-->
            <ul class="card-list">

              <!--Studio Room 2-->
              <li class="card1 text-white card-has-bg click-col" style="background-image:url('https://images.adsttc.com/media/images/5d1b/e492/284d/d1b1/8300/00a1/large_jpg/feature_-_FFX_SDC_01.jpg?1562109025');">
                <div class="card-img-overlay d-flex flex-column">
                  <div class="card-body">
                    <div class="media">
                      <div class="media-body">
                        <h6 class="roomC mb-2"><strong>Room C</strong></h6>
                      </div>
                    </div>
                  </div>
                </div>
              </li>
              <!--Studio Room 2-->

              <!--Studio Room 1-->
              <li class="card1 text-white card-has-bg click-col" style="background-image:url('https://www.unifiedmanufacturing.com/blog/wp-content/uploads/2021/02/Nightbird-Recording-Studios-Pandemic.jpg');">
                <div class="card-img-overlay d-flex flex-column">
                  <div class="card-body">
                    <div class="media">
                      <div class="media-body">
                        <h6 class="roomB mb-2"><strong>Room B</strong></h6>
                      </div>
                    </div>
                  </div>
                </div>
              </li>
              <!--Studio Room 1-->

              <!--Studio Front Page-->

              <!--Studio Front Page-->
              <li class="card1 text-white card-has-bg click-col" style="background-image:url('https://westlakepro.com/wp-content/uploads/2020/01/SnoopDoggStudio.jpg');">
                <div class="card-img-overlay d-flex flex-column">
                  <div class="card-body">
                    <div class="media">
                      <img class="mr-3 rounded-circle" id="stuImage" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQxUXsEFPioqCqDqgp7MeLNpM7iZYL6mt97ElI3LwCnuFoarwmSWbJquoEwbi1AJSRzXBs&usqp=CAU" alt="Generic placeholder image" style="max-width:50px; position: relative; top: 50px; left: -150px;">
                      <div class="media-body">
                        <h6 class="card-meta mb-2"><strong>CC Studios</strong></h6>
                        <small class="stuLocation">Bethesda, MD</small>
                      </div>
                    </div>
                    <!--Heart Button--->
                    <div class="btns1">
                      <Button style="font-size: 35px" onclick="Toggle1()" id="btnh1" class="btn"><i
                                  class="fas fa-heart"></i></Button>
                    </div>
                    <!---Heart Button--->
                    <!---Star Rating--->
                    <div class="rating-box">
                      <div class="star-source">
                        <svg>
                                  <linearGradient x1="50%" y1="5.41294643%" x2="87.5527344%" y2="65.4921875%" id="grad">
                                    <stop stop-color="#bf209f" offset="0%"></stop>
                                    <stop stop-color="#d62a9d" offset="60%"></stop>
                                    <stop stop-color="#ED009E" offset="100%"></stop>
                                  </linearGradient>
                                  <symbol id="star" viewBox="153 89 106 108">
                                    <polygon id="star-shape" stroke="url(#grad)" stroke-width="5" fill="currentColor"
                                      points="206 162.5 176.610737 185.45085 189.356511 150.407797 158.447174 129.54915 195.713758 130.842203 206 95 216.286242 130.842203 253.552826 129.54915 222.643489 150.407797 235.389263 185.45085">
                                    </polygon>
                                  </symbol>
                                </svg>
                      </div>
                      <div class="star-container">
                        <input type="radio" name="star" id="five">
                        <label for="five">
                                  <svg class="star">
                                    <use xlink:href="#star" />
                                  </svg>
                                </label>
                        <input type="radio" name="star" id="four">
                        <label for="four">
                                  <svg class="star">
                                    <use xlink:href="#star" />
                                  </svg>
                                </label>
                        <input type="radio" name="star" id="three">
                        <label for="three">
                                  <svg class="star">
                                    <use xlink:href="#star" />
                                  </svg>
                                </label>
                        <input type="radio" name="star" id="two">
                        <label for="two">
                                  <svg class="star">
                                    <use xlink:href="#star" />
                                  </svg>
                                </label>
                        <input type="radio" name="star" id="one">
                        <label for="one">
                                  <svg class="star">
                                    <use xlink:href="#star" />
                                  </svg>
                                </label>
                      </div>
                    </div>
                    <!---Star Rating--->


                  </div>
                </div>
              </li>
              <!--Studio Front Page-->


            </ul>
            <button class="buttons next2">></button>
          </div>
        </div>
      </div>
      <!--Studio Two-->



    </div>
  </div>
</section>

0 Answers
Related