2

iphone唯一的问题

演示(尝试触摸视频)

<div class="video">
  <div class="empty"></div>
  <video id="player1" width="540" height="303" preload="none">
    <source src="http://mediaelementjs.com/media/echo-hereweare.mp4" type="video/mp4" />
  </video>
</div>

.video {
  position : relative;
  width    : 540px;
  height   : 303px;
}
.video .empty {
  position : absolute;
  z-index  : 1;
  width    : 100%;
  height   : 100%;
}

$("*").add(document).add(window)
.bind(
  "touchstart touchend touchcancel touchleave touchmove",
  function() { alert(1); }
);

html5 视频控件无法关闭,但视频控件不会传播任何事件(尤其是触摸事件)。

有什么解决方法吗?

4

0 回答 0