[DELETED]
隐藏信息,因为它的措辞很差,并通过简单的搜索来回答。
答案 0 :(得分:1)
答案 1 :(得分:0)
您应该在元素上添加css position: fixed; bottom: 0; right: 0
以获取它在屏幕的右下角。 right: 0
是元素距父对象右边的距离,在这个例子中是屏幕,因为我们给它一个固定的位置。为了让它与另一个元素相邻,而不是在它的上面,他必须在右边添加一些金额,比如right: 20px
此外,您可以添加ID以轻松选择css中的元素。
<img id="radioButton" src=.../play.png onclick="javascript:toggleSound();">
<style>
#radioButton {
position: fixed;
bottom: 0;
right: 20px;
}
#radioButton:hover {
opacity: 0.5;
filter: alpha(opacity=50);
}
</style>