2015-08-20 114 views
0

我正在使用wordpress主題並掃描了javascript文件,但無法弄清楚是什麼導致了這種情況。頁面加載時的奇怪效果

加載頁面時出現這種奇怪的縮放效果,然後一切恢復正常。在大多數瀏覽器中發生,但有時在Safari中不會發生。

請看:

http://homestudiocenter.com/homestudiocourse/

任何想法可能是什麼?

非常感謝!

+2

你可以添加截圖?有些用戶不會看鏈接。 –

+3

不要發佈隨機鏈接,使用截圖或顯示一些代碼 – Mayhem

+0

我不能複製它。 – Andy

回答

0
body * { animation-duration: 0.001s; animation-name: insQ_101; -webkit-animation-duration: 0.001s; -webkit-animation-name: insQ_101; } 

這個webkit動畫是它的來源。這解釋了爲什麼它放大Safari & Chrome(webkit)而不是FFox(非webkit)。

+2

thnx竊取我的答案:) – Aibrean

+0

@Aibrean你有'insQ_101'的定義? –

+1

@Aibrean歡迎您。這是關於* andwer *和* comment *之間≠ce的一課。發佈你自己的,我刪除我的。我的慈善。 – 3pic

1

我認爲它是由類home中的css引起的。當您移除並將home css添加到身體時,會發生縮放效果。

的定義是

.home { 
    background-image: url('images/mac.png'); 
    background-position: center bottom; 
    background-repeat: no-repeat; 
    min-height: 730px; 
    animation: animatedBackground 1s ease-in-out; 
    -ms-animation: animatedBackground 1s ease-in-out; 
    -moz-animation: animatedBackground 1s ease-in-out; 
    -webkit-animation: animatedBackground 1s ease-in-out; 
} 

animatedBackground的定義是

@keyframes animatedBackground { 
    from { 
     background-position: center 550px; 
    } 
    to { 
     background-position: center bottom; 
    } 
} 
+0

這個修好了,非常感謝你! –