Jquery значок переключения вверх и вниз - PullRequest
0 голосов
/ 07 марта 2020

Если щелкнуть содержимое в .accordion-head, изображение стрелки должно быть изменено на «вверх», в то время как содержимое в .accordion-body перемещено вверх. Я думаю, что я обернул содержимое с правильным тегом div, но это не сработало. Кто-нибудь может мне помочь и разобраться?

$('.accordion').each(function() {
  var $accordian = $(this);
  $accordian.find('.accordion-head').on('click', function() {
    $(this).removeClass('open').addClass('close');
    $accordian.find('.accordion-body').slideUp();
    if (!$(this).next().is(':visible')) {
      $(this).removeClass('close').addClass('open');
      $(this).next().slideDown();
    }
  });
});
.outer {
  width: 850px;
  /*height: 500px;*/
  /*height:500px;*/
  /*color:white;*/
  /*margin-top:50px;*/
  margin-left: auto;
  margin-right: auto;
}

.title {
  margin-top: 35px !important;
  font-size: 20px;
  font-weight: 900;
}

hr.garo {
  border: 1px solid #757272;
  margin-top: 17px;
  margin-bottom: 17px;
}

#tableMain {
  width: 800px;
  border: 1px solid lightgray;
  border-left: none;
  border-right: none;
  border-collapse: separate;
  border-spacing: 0px;
  margin-top: 40px;
  text-align: center;
}

table {
  width: 100%;
}

th {
  margin-top: 10px;
  background: lightgray;
  box-sizing: border-box;
}

th,
td {
  padding: 15px 20px;
  text-align: center;
  border: 1px solid lightgray;
  border-left: none;
  border-right: none;
}

a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px 8px 16px;
  margin-top: 20px;
}

a:hover {
  background-color: #ffc107;
  color: white;
}

.page {
  background-color: rgb(244, 244, 244);
  margin-top: 50px;
  color: black;
  border-radius: 5px;
  font-size: 20px;
}

#pop {
  border: 1px solid lightgray;
  font-size: 10px;
  text-align: left
}

img {
  width: 400px;
  height: 200px;
}

#bor {
  border: 1px solid gray;
  text-align: left;
  font-weight: bold;
}

.pay {
  text-align: left;
  font-weight: bold;
  background-color: rgba(211, 211, 211, 0.418);
}

.breakrow {
  border: 1px solid lightgray;
}

input {
  background-color: #ffc107;
  color: white;
  border-radius: 2px;
}

#sep {
  border: 1px solid gray;
  border-collapse: collapse;
}

#space {
  margin-left: 20px;
  box-sizing: border-box;
}

.arrow {
  float: left;
  border: 10px solid transparent;
  margin-top: 3px;
  margin-left: 20px;
  border-top-color: lightgray;
}

.breakrow-head.open .arrow {
  margin-top: 11px;
  border-bottom-color: #F3F3F3;
  border-top-color: transparent;
}
image

1 Ответ

0 голосов
/ 07 марта 2020

Я просто изменяю вашу структуру HTML, поскольку вы не можете вставить элемент div из элемента <tr>, поэтому следуйте html стандартной структуре.

Следуйте приведенному ниже фрагменту кода, я надеюсь, что это поможет вам много.

$(document).on('click', '.accordion-head', function(){
  $('.accordion-head').removeClass('open');
  if (!$(this).hasClass('open')){
    $(this).addClass('open'); 
  }
  else{
    $('.accordion-head').removeClass('open'); 
    $(this).addClass('close'); 
  }
  $('.accordion-body').slideUp();
  $(this).next().slideDown(); 
});
.outer {
  width: 850px;
  /*height: 500px;*/
  /*height:500px;*/
  /*color:white;*/
  /*margin-top:50px;*/
  margin-left: auto;
  margin-right: auto;
}

.title {
  margin-top: 35px !important;
  font-size: 20px;
  font-weight: 900;
}

hr.garo {
  border: 1px solid #757272;
  margin-top: 17px;
  margin-bottom: 17px;
}

#tableMain {
  width: 800px;
  border: 1px solid lightgray;
  border-left: none;
  border-right: none;
  border-collapse: separate;
  border-spacing: 0px;
  margin-top: 40px;
  text-align: center;
}

table {
  width: 100%;
}

th {
  margin-top: 10px;
  background: lightgray;
  box-sizing: border-box;
}

th,
td {
  padding: 15px 20px;
  text-align: center;
  border: 1px solid lightgray;
  border-left: none;
  border-right: none;
}

a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px 8px 16px;
  margin-top: 20px;
}

a:hover {
  background-color: #ffc107;
  color: white;
}

.page {
  background-color: rgb(244, 244, 244);
  margin-top: 50px;
  color: black;
  border-radius: 5px;
  font-size: 20px;
}

#pop {
  border: 1px solid lightgray;
  font-size: 10px;
  text-align: left
}

img {
  width: 400px;
  height: 200px;
}

#bor {
  border: 1px solid gray;
  text-align: left;
  font-weight: bold;
}

.pay {
  text-align: left;
  font-weight: bold;
  background-color: rgba(211, 211, 211, 0.418);
}

.breakrow {
  border: 1px solid lightgray;
}

input {
  background-color: #ffc107;
  color: white;
  border-radius: 2px;
}

#sep {
  border: 1px solid gray;
  border-collapse: collapse;
}

#space {
  margin-left: 20px;
  box-sizing: border-box;
}

.arrow {
  float: left;
  border: 10px solid transparent;
  margin-top: 3px;
  margin-left: 20px;
  border-top-color: lightgray;
  transition: 350ms;
  position: absolute;
}
.accordion-head.open{
  background: #eee;
}
.accordion-head.open .arrow {
  margin-top: -10px;
  transform: rotate(180deg);
}
image
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...