有谁知道我会放这个代码吗?在 wordpress 中.. 我把它放在 funtions.php 以及页脚和页眉中,我得到的只是一个字符串错误或编写的代码
var vid = document.getElementsByTagName("video");
[].forEach.call(vid, function (item) {
item.addEventListener('mouseover', hoverVideo, false);
item.addEventListener('mouseout', hideVideo, false);
});
function hoverVideo(e)
{
this.play();
}
function hideVideo(e)
{
this.pause();
}
它是一个 JavaScript
至于 HTML 代码,我把它放在帖子或页面文本编辑器中
这是我试图达到的效果-> http://jsfiddle.net/ymV8J/10/