图片无法在iPhone上运行,但可以在Android上运行吗?

时间:2018-07-09 15:13:56

标签: android html css iphone

CSS,用户按下一个点,应该会出现一个图像

plusone.js
  

具有.img1类的HTML代码

 .img1 {
      background: url(../images/11.jpg)100% 100%/100% no-repeat;
      opacity: 0;
      height: 100px;
      width: 38%;
    }

    .img1:active {
      opacity: 1;
    }

3 个答案:

答案 0 :(得分:0)

您想做什么? 想为背景选择照片吗?

答案 1 :(得分:0)

尝试一下:

 .img1 {
      background: url('/file.jpg')100% 100%/100% no-repeat;
      opacity: 0;
      height: 100px;
      width: 38%;
    }

    .img1:hover {
      opacity: 1;
    }
<div class="electronic">
      <p>CONTABILIDAD ELECTRONIC</p><div class="img1"> </div>
    </div>

单击图像底部的图像会显示该图像!

答案 2 :(得分:0)

我已解决它,我想分享解决方案: https://developer.mozilla.org/en-US/docs/Web/Events/touchstart 我使用了一个名为touchstart的javascript事件,该事件在IOS上非常神奇