0
私は、クリックに基づいて上下の矢印の切り替えが必要なボタン用にHTMLとCSSを作成しました。私はHTMLとCSSでうまくいきましたが、jQueryを使ってうまくいきません。誰も私にこれを始めることができますか? クリックすると.js-custom-sleeve-optionの矢印が上下に変わります。上下矢印onclick
.js-custom-sleeve-option {
width: auto;
min-width: 3.8rem;
height: 3rem;
display: inline-block;
border: 1px solid #d1cac5;
background: #f7f7f7;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
text-align: center;
}
.js-arrow-down {
display: inline-block;
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 6px solid #233354;
position: relative;
left: 7px;
}
.js-arrow-up {
display: inline-block;
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-bottom: 6px solid #233354;
position: relative;
left: 6px;
bottom: 12px;
}
<div>
\t \t \t <a class="js-custom-sleeve-option">
\t \t \t \t <span class="js-arrow-down"></span>
\t \t \t </a>
</div>