现在的位置: 首页 > 综合 > 正文

网页中添加音频视频

2018年02月15日 ⁄ 综合 ⁄ 共 412字 ⁄ 字号 评论关闭

在网页中添加音频有两种方法:

1.  在<head>标签中添加<bgsound src="音频地址" loop=“infinite”  volume=“0” balance=“0”/>

2. 视频也可以才用这种方法

 <embed src="音频/视频地址" width="28" heigth="28" >

鼠标滚轴的缩放

<SCRIPT>
function bbimg(o){
var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/2;if (zoom>0) o.style.zoom=zoom+'%';
return false;
}
</script>
<img src="images/01.jpg" onmousewheel="return bbimg(this)" width="150" height="127"></p>
<div onmousewheel="return bbimg(this)">

抱歉!评论已关闭.