ueditor上传视频时的默认宽度为420,高度为280,这样的高度在页面中显然是太小了。每次上传都手动修改宽度高度的值太麻烦有没有办法修改这个默认值呢。
打开 /statics/js/ueditor/dialogs/video/video.js
找到
' width="' + 420 + '"' +
' height="' + 280 + '"' +
改为
' width="' + 800 + '"' +
' height="' + 533 + '"' +
找到
width = parseInt($G('upload_width').value, 10) || 420,
height = parseInt($G('upload_height').value, 10) || 280,
改为
width = parseInt($G('upload_width').value, 10) || 800,
height = parseInt($G('upload_height').value, 10) || 533,
注意这里不能使用相对宽度如“100%”和“auto”
评论
本文评论功能已关闭。