2013-05-18 46 views

回答

2

你不應該需要JavaScript來此,CSS將(或應該)做的很好:

background-position: center center; 
background-repeat: repeat-x; 

該行將確保圖像在元素始終圍繞,而且它通過反覆啓動該元素的中心。 More info on background-position here

+1

這樣做也會在y軸上重複。確保你也使用'background-repeat:repeat-x;'來確保它只在x軸上重複。 – DavidVII

+1

我認爲他已經在使用它,因爲他說它沿着x軸重複,但是非常好。 – mattsven

1

也許我誤解了這裏的問題,但我相信你可以用CSS來做到這一點。

.container { 
    background: url('path/to/image') repeat-x 50% 0; 
} 

這是你的想法?