所以我在这里有一个页面:http ://www.ruffcuts.com.sg/work/bosch.htm以及其他一些页面。
我希望将鼠标悬停在视频元素上,然后更改前面草图像的不透明度(id=plax-sphere-52 src=homehead6.png),以便可以看到播放器的控件。
但不知何故,它不起作用!我试过了
$('#videocontain').mouseover(function() {
$('img#plax-sphere-52').css('opacity', '0.6');
});
$('#videocontain').mouseout(function() {
$('img#plax-sphere-52').css('opacity', '1');
});
和其他类似的编码,但它只是不起作用。
会不会在某个地方发生冲突,或者我只是简单地编码错了?顺便使用http://videojs.com/。