我已經看到在兩個網站這些數字在png圖像路徑之後意味着什麼?
/* First example */
background: #F8F8F8 url('/images/noise.png?1333540701') top left;
/* Second example from a different site */
background: #F8F8F8 url('/images/noise.png?1326131369') top left;
是什麼意思*.png?randomNumbers
png圖片路徑後,下面的CSS規則?他們在這裏的目的是什麼?
第一個來自bastsov,另一個來自Matt Gemmell。兩者都使用Octopress框架。
編輯 這不是兩個規則都在同一個站點上使用。每個規則來自不同的網站。
此外,無論何時提到noise.png
,他們似乎都在使用相同的號碼。例如,
/* rule for navigation bar */
background: url('/images/noise.png?1333540701'),linear-gradient(#E0E0E0,#CCC,#B0B0B0)
/* rule for #main */
background: #F2F2F2 url('/images/noise.png?1333540701') top left;
我觀察到相同的模式,但在Matt Gemmell的站點有不同的數字。