210720 UIUX WebデザインjQuery練習12 7(index.html->main.js)
$(document).ready(function () {
// depth2, depth2Bg
$(".depth2, .depth2Bg").hide();
$(".gnb > li").on("mouseenter", function() {
$(".depth2, .depth2Bg").stop().slideDown(400);
});
$(".gnb > li").on("mouseleave", function() {
$(".depth2, .depth2Bg").stop().slideUp(400);
});
// newsList
$(".newsList").slick ({
autoplay : true,
autoplaySpeed: 3000,
vertical: true,
dots: false,
arrows : false
});
//sns
$(".snsList").slick({
autoplay : true,
autoplaySpeed: 2000,
dots: false,
infinite: true,
speed: 300,
slidesToShow: 4,
slidesToScoll: 1,
adaptiveHeight: true
});
});
Reference
この問題について(210720 UIUX WebデザインjQuery練習12 7(index.html->main.js)), 我々は、より多くの情報をここで見つけました https://velog.io/@itisit210/210720-UIUX-WebDesign-jQuery-연습127index.html-テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol