好吧,我在网上看到了很多关于这个的问题,但似乎其中很多都在使用 PHP、ASP、JQUERY 和任何其他语言。对我来说,我只对 CSS 和 Java Script 有点熟悉,那是我只知道的语言。那么有人可以向我展示一些针对该问题的 CSS 和 Java Script 代码吗?
无论如何,我也对网站上的背景感兴趣,每次刷新都会改变!
提前致谢!
嘿,我找到了示例代码,它运行良好!
<html>
<head>
<title>Untitled</title>
<script type="text/javascript">
function changeImg(imgNumber) {
var myImages = ["Background/Background.jpg", "Background/Background2.jpg", "Background/Background3.jpg", "Background/Background4.jpg", "Background/Background5", "Background/Background6", "Background/Background7"];
var imgShown = document.body.style.backgroundImage;
var newImgNumber =Math.floor(Math.random()*myImages.length);
document.body.style.backgroundImage = 'url('+myImages[newImgNumber]+')';
}
window.onload=changeImg;
</script>
<style type="text/css">
.bg {background-attachment:fixed; background-repeat: no-repeat; background-position:top right;}
</style>
</head>
<body class="bg">
<p>Some text</p>
<!-- put a lot text lines here to see that the background stays fixed. -->
<p>Some text</p>
</body>
</html>