2010-10-01 142 views

回答

0

嘿它是不是一個暗技術中,他們使用的是固定的父容器height:665pxoverflow:hidden。它允許所有內容擬合到它被隱藏。只需增加父容器的高度以容納更多內容(在這種情況下,它們是圖像)。

//vertical is the class of parent container in the example you provided. 
.vertical { 
    border-top:1px solid #DDDDDD; 
    height:665px; // just increase it for showing more images. 
    overflow:hidden; //causing images to hide. 
    position:relative; 
    width:700px; 
} 

Working Example表示示出四個圖像

Working Example表示fiveimages

1

更改容器的高度也有訣竅。

carzy demo
.vertical { 

    /* required settings */ 
    position:relative; 
    overflow:hidden;  

    /* vertical scrollers have typically larger height than width */  
    height: 886px; /* original height:665px; */ 
    width: 700px; 
    border-top:1px solid #ddd;  
} 
1

爲頁面本身上的實施例只是兩個圖像

Working Example:只是把4個格而不是3的包裝和相應地增加「.vertical」的高度。它不是插件的安裝問題,而是您如何製作標記。