我正在Wordpress中使用Elementor块生成器,我正在尝试让一个.gif图像将源切换到另一个.gif图片。我的OnClick活动在网络上运行得很好,但在移动设备上运行得不好。我无休止地搜索,并确保另一个元素没有阻止触摸事件,添加了OnTouch等,但都无济于事。
<img src="https://lowlifeclothing.co/wp-content/uploads/2020/09/Loop1.gif"
onClick="this.src='https://lowlifeclothing.co/wp-content/uploads/2020/09/Loop1D.gif'">
将onClick
更改为onclick
:
<img src="https://lowlifeclothing.co/wp-content/uploads/2020/09/Loop1.gif"
onclick="this.src='https://lowlifeclothing.co/wp-content/uploads/2020/09/Loop1D.gif'">
HTML属性区分大小写。