Postingan lainnya
Kelas Premium!
Belajar bikin website dari nol sekarang
Gunakan kupon "lebihcepat" untuk diskon 25%!
Custom arah toggle class jquery dengan width&height
Saya membuat website statis menggunakan html+css+jquery saya terinspirasi dari website dragoncapital.center jadi saya kepengin arah animasinya itu ke arah tanda kuning, tapi kenyataannya malah ke merah, bagaimana solusinya?
</script>
$(document).ready(function () {
$('.toggle-estimator').click(function () {
$('.toggle-estimator').toggleClass('active')
})
$('.toggle-estimator').click(function () {
$('.box-estimator').toggleClass('active')
})
})
</script>
#trainingroom .team-content .akma-estimator .toggle-estimator{
position: absolute;
left: 90px;
width: 25px;
height: 25px;
background: #aeceff;
transition: 0.5s;
border-radius: 50%;
cursor: pointer;
z-index: 99;
}
#trainingroom .team-content .akma-estimator .toggle-estimator span{
display: block;
width: 15px;
height: 3px;
background: #fff;
position: absolute;
top: 11px;
left: 5px;
transition: 1s;
}
#trainingroom .team-content .akma-estimator .toggle-estimator span:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
transform: rotate(90deg);
background: #fff;
transition: 1s;
}
.toggle-estimator.active{
transform: rotate(225deg);
}
.box-estimator {
position: relative;
width: 2px;
height: 2px;
position: absolute;
padding: 20px;
top: 15px;
left: 105px;
transition: 0.5s;
border-radius: 10px;
box-sizing: border-box;
overflow: hidden;
}
.box-estimator.active {
width: 400px;
height: 320px;
background: rgba(212, 245, 255, 0.8);
}
0
Belum ada Jawaban. Jadi yang pertama Jawaban
Login untuk ikut Jawaban