|
const cDown = document.querySelector('.c-down');
|
|
const ul = document.querySelector('.product-nav ul:nth-child(2)');
|
|
cDown.addEventListener('click', function(){
|
|
if(ul.style.height != 'auto'){
|
|
ul.style.height = "auto";
|
|
}else{
|
|
ul.style.height = "56px"
|
|
}
|
|
}) |