我使用渐进式 CSS 来设置网站背景图像的样式。我找到了一些关于使用 jQuery 循环图像的教程,但我还没有看到任何可以通过 CSS 完成的教程。它们都带有 HTML。我怎样才能做到这一点,以便 Jquery 或 Javascript 循环通过图像而不必创建一个 div 这样做。
我的 CSS:
html {
background: url('../assets/homepage.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}