...
|
...
|
@@ -37,19 +37,28 @@ function hiddenTips($ele) { |
|
|
}
|
|
|
}
|
|
|
|
|
|
function isFlexSupport() {
|
|
|
var flex = document.createElement('p').style.flex,
|
|
|
webkitFlex = document.createElement('p').style.webkitFlex,
|
|
|
flexWrap = document.createElement('p').style.flexWrap;
|
|
|
|
|
|
if ((flex === '' || webkitFlex === '') && flexWrap === '') {
|
|
|
return true;
|
|
|
} else {
|
|
|
return false;
|
|
|
//function isFlexSupport() {
|
|
|
// var flex = document.createElement('p').style.flex,
|
|
|
// webkitFlex = document.createElement('p').style.webkitFlex,
|
|
|
// flexWrap = document.createElement('p').style.flexWrap;
|
|
|
//
|
|
|
// if ((flex === '' || webkitFlex === '') && flexWrap === '') {
|
|
|
// return true;
|
|
|
// } else {
|
|
|
// return false;
|
|
|
// }
|
|
|
//}
|
|
|
|
|
|
function wrapElements(selector, count) {
|
|
|
$(selector).each(function(idx, el) {
|
|
|
if (idx % count === 0) {
|
|
|
$($(selector).slice(idx, idx + count)).wrapAll($('<div class="js-wraper"></div>'));
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function search() {
|
|
|
if (searching || end) {
|
|
|
return;
|
...
|
...
|
@@ -84,9 +93,10 @@ function search() { |
|
|
hiddenTips($('#size-swiper-container'));
|
|
|
hiddenTips($('#reference-swiper-container'));
|
|
|
|
|
|
if (!isFlexSupport()) {
|
|
|
$('.detail .column').removeClass('column').addClass('oldbox');
|
|
|
}
|
|
|
//if (!isFlexSupport()) {
|
|
|
// $('.detail .column').removeClass('column').addClass('oldbox');
|
|
|
//}
|
|
|
wrapElements('.detail .column', 2);
|
|
|
searching = false;
|
|
|
end = true;
|
|
|
loading.hideLoadingMask();
|
...
|
...
|
|