Authored by xuqi

品牌文字截取

... ... @@ -359,7 +359,7 @@ module.exports = function(flag) {
list: [
{
thumb: 'http://7xidk0.com1.z0.glb.clouddn.com/logo.png',
name: 'HALFGIRL',
name: 'HALFGIRL测试名字长的情况',
url: ''
},
{
... ... @@ -669,7 +669,7 @@ module.exports = function(flag) {
{
id: 1,
thumb: 'http://img13.static.yhbimg.com/goodsimg/2015/03/02/08/023f696cf1ae78688bc6c8edeccc480c2c.jpg?imageMogr2/thumbnail/235x314/extent/235x314/background/d2hpdGU=/position/center/quality/90',
name: 'G-Star白色后腰拉链款男士牛仔裤',
name: 'G-Star白色后腰拉链款男士牛仔裤测试一下名字太长了后的情况',
price: 488,
salePrice: 139,
url: ''
... ... @@ -730,7 +730,7 @@ module.exports = function(flag) {
list: [
{
thumb: 'http://7xidk0.com1.z0.glb.clouddn.com/logo.png',
name: 'HALFGIRL',
name: 'HALFGIRL测试名字很长的情况怎么显示呢',
url: ''
},
{
... ...
... ... @@ -38,6 +38,9 @@ exports.init = function() {
$('.post-list').find('span').each(function() {
$(this).mlellipsis(2);
});
$('.brand-name').each(function() {
$(this).mlellipsis(1);
});
//图片懒加载
$('img.lazy').lazyload();
... ...
... ... @@ -100,6 +100,9 @@ exports.init = function() {
$('.reco .name').each(function() {
$(this).mlellipsis(2);
});
$('.brand-name').each(function() {
$(this).mlellipsis(1);
});
//read good-info template
$.get('/common/goodinfo', function(data) {
... ... @@ -408,9 +411,9 @@ exports.init = function() {
//加载更多
$(document).scroll(function(e) {
//当scroll到1/4$goodsContainer高度后继续请求
//当scroll到1/3$goodsContainer高度后继续请求
if (canLoadAjax && $(window).scrollTop() + winH >=
$(document).height() - 0.25 * $goodsContainer.height() - loadMoreH) {
$(document).height() - 0.33 * $goodsContainer.height() - loadMoreH) {
search();
}
});
... ...