westdc-zf1/htdocs/static-sanji/js/data-list.js

33 lines
887 B
JavaScript

// var cDown = document.querySelector('.c-down');
//
// var 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"
// }
// });
//
//
// var cImg = document.querySelectorAll('.c-img');
// var cCover = document.querySelectorAll('.c-cover');
//
// for(var i = 0;i < cImg.length; i++)(function(i){
// cImg[i].addEventListener('mouseover', function(e){
// for(var j = 0; j < cCover.length; j++){
// if(i == j){
// cCover[j].style.display = 'block';
// }
// }
// })
// })(i)
//
//
// for(var c = 0;c < cImg.length; c++){
// cCover[c].addEventListener('mouseout', function(e){
// this.style.display = "none";
// })
// }