Authored by ccbikai

SALE 频道选择

... ... @@ -24,3 +24,11 @@ if ($('.swiper-container .swiper-slide').length > 1) {
pagination: '.banner-top .pagination-inner'
});
}
$(function() {
var $saleNavSelect = $('.sale-nav-select');
$('.sale-nav').on('click', function() {
$saleNavSelect.slideToggle();
});
});
... ...
.yoho-header {
.sale-nav {
text-transform: capitalize;
font-size: 36px;
}
+ .sale-nav-select {
position: absolute;
top: 90px;
right: 10px;
right: 20px;
z-index: 2;
background: #000;
display: none;
padding: 10px 30px;
min-width: 246px;
border-radius: 10px;
background-color: #000;
background-image: linear-gradient(to bottom, #000 0%, #333 100%);
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.6);
text-align: center;
font-size: 28px;
line-height: 80px;
&:before {
position: absolute;
top: -10px;
right: 30px;
width: 20px;
height: 20px;
background: #000;
content: "";
transform: rotate(45deg);
}
a {
display: block;
border-bottom: 2px solid #ccc;
color: #fff;
&:last-child {
border-bottom: none;
}
}
}
}
... ...