gpt4 book ai didi

javascript - 创建图像元素并随机放置在 html5 中的 div 中

转载 作者:行者123 更新时间:2023-11-28 16:31:48 25 4
gpt4 key购买 nike

在我的 html 文档中,我有一个 id="containerRight"的 div。在 html 文档所在的同一目录中,我有一个图像需要添加到 html 中。使用 javascript,我想将 5x 相同的图像添加到 div 中,并将它们随机分散在 div 中。我正在努力从硬盘添加 5 倍相同的图像并将它们随机放置在 div 中。到目前为止我已经试过了:

<!DOCTYPE html>
<html>
<head>
<script>

function insert_picture(){
var newPicture = document.createElement("img");
var destinationParent = document.getElementByID("containerRight");
destinationParent.appendChild(newPicture);
}

function ImgRandomPosition()
{
var left = generateRandom();
var top = generateRandom();
var image = insert_picture();
var imagestyle = document.getElementById("imgRight").style;
imagestyle.position = "absolute";
imagestyle.top = top;
imagestyle.left = left;
}

</script>
</head>

<body onclick="insert_picture()">
<div id="containerRight">
<img id="imgRight" src="smiley.png" alt="" />
</div>

</body>
</html>

最佳答案

我已将代码更改为以下代码并将图像添加到彼此相邻的 div 容器中:

function insert()
{
var imgDestination = document.getElementById("containerRight");
var imgAdded = document.createElement("img");
imgAdded.src = "smiley.png";
imgDestination.appendChild(imgAdded);
}

然后下一个问题是在同一个 div id="containerRight"中随机定位图像。下面的代码确实将图​​像随机添加到 html 的主体而不是 div。非常感谢任何进一步的想法:

function insert()
{
var imgDestination = document.getElementById("containerRight");
var imgAdded = document.createElement("img");
imgAdded.src = "smiley.png";
imgDestination.appendChild(imgAdded);
ImgRandomPosition(imgAdded);
}


function ImgRandomPosition(imgAdded)
{
var left = Math.floor((Math.random() * 400) + 1)+"px";
var top = Math.floor((Math.random() * 400) + 1)+"px";
var imagestyle = imgAdded.style;
imagestyle.position = "absolute";
imagestyle.top = top;
imagestyle.left = left;
}

关于javascript - 创建图像元素并随机放置在 html5 中的 div 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35198786/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com