2015-12-04 44 views
0

這是頁面(在標題部分:體驗一個地方 - 在您到達那裏之前,在FF中您只能看到一張鮭魚圖片,如果它有效,你還會看到紅醬和酸橘汁醃魚)。僅適用於CSS3的傳送帶不能在Firefox中工作

http://www.celebritycruises.com/htmlpage/html-page-test

我使用CSS3動畫屬性改變的瓷磚之一的背景圖像。適用於Chrome,Safari,IE 10+,但不適用於FF(帶或不帶-moz-)

任何想法?

main #onboard section:nth-child(3) section:nth-of-type(1) { 
    animation:pulse 5s infinite; 
    background:url(/media/en_US/images/cel_deployment/Global_Culinary/800x400/food01_800x400.jpg) center center no-repeat; 
    background-size:cover; 
    height:55%; 
} 
@keyframes pulse { 
33% { 
    background:url(/media/en_US/images/cel_deployment/Global_Culinary/800x400/food02_800x400.jpg) center center no-repeat; 
    background-size:cover; 
} 
66% { 
    background:url(/media/en_US/images/cel_deployment/Global_Culinary/800x400/food03_800x400.jpg) center center no-repeat; 
    background-size:cover; 
} 
99% { 
    background:url(/media/en_US/images/cel_deployment/Global_Culinary/800x400/food01_800x400.jpg) center center no-repeat; 
    background-size:cover; 
} 
} 

回答

相關問題