单击时是否有图像移动?

时间:2018-12-24 08:48:20

标签: html

有没有人知道如何使图像变得不可点击,就像您尝试单击它时一样?

我尝试使用<move>标签,但这不是问题。
我希望尝试单击它时会移动一些东西

2 个答案:

答案 0 :(得分:-1)

无法选择的html标签似乎也很有帮助,但显然只有IE和Opera支持它:

<img src="1.jpg" unselectable="on">

以及如下所示的javascript解决方案:

<script>
window.onload = function() {
    document.body.onselectstart = function() {
        return false;
    }
}
</script>

答案 1 :(得分:-1)

尝试为图片指定ID:

<img id="image">

然后使用CSS:

#image{
 &:active{
    position:relative; # set position relative 
    right:100px; # choose which direction you want it to move when you click it. If you choose right it'll move left, left it'll move right, etc.
}}