我是 HTML5 和 Javascript 的初学者,我想创建一个基本函数,用事件交换部分的位置。
功能 1 正在工作,将“con”部分交换到顶部,但功能 2 不起作用。
拜托,有人可以帮助我吗?
function swap1()
{
document.getElementById("top").style.position = "absolute";
document.getElementById("con").style.top = "50px";
}
function swap2()
{
document.getElementById("con").style.position = "fixed";
document.getElementById("top").style.bottom = "300px";
}
<section id="top" onmousedown="swap1()">
<video width="500" height="500" controls>
<source src="http://techslides.com/demos/sample-videos/small.mp4" type=video/mp4>
</video>
</section>
<section id="con" onmouseover="swap2()">
<hr>
<p>Text.</p>
</section>