html5拖曳本地图片并读取,HTML5 拖拽图片到网页内

拖拽本地图片到页面指定元素内

window.onload = function() {

/*

拖拽事件监听========================================

*/

var oDropBox = document.getElementById('dropBox');

oDropBox.addEventListener('dragover', function(e) {

e.stopPropagation();

e.preventDefault();

}, false);

oDropBox.addEventListener('drop', handleDrop, false);

function handleDrop(e) {

e.stopPropagation();

e.preventDefault();

var fileList = e.dataTransfer.files,  //获取拖拽文件

fileType = fileList[0].type,

oImg = document.createElement('img'),

reader = new FileReader();

if (fileType.indexOf('image') == -1) {

alert('请拖拽图片~');

return;

}

reader.onload = function(e) {

oImg.src = reader.result;

oDropBox.innerHTML = '';

oDropBox.appendChild(oImg);

}

reader.readAsDataURL(fileList[0])

}

/*

控制大小==========================================

*/

document.getElementById("btnLarger").onclick = function(){

var obj = document.getElementById("dropBox");

if(!obj || obj.width >= 800 || obj.height >= 800){

return;

}

increaseObjWidth(obj,10);

increaseObjHeight(obj,10);

}

document.getElementById("btnSmaller").onclick = function(){

var obj = document.getElementById("dropBox");

if(!obj || obj.width <= 0 || obj.height <= 0){

return;

}

increaseObjWidth(obj,-10);

increaseObjHeight(obj,-10);

}

//===============================================

}

function increaseObjWidth(obj,increaseBy){

obj.style.width = parseInt(obj.style.width) + increaseBy + "px";

}

function increaseObjHeight(obj,increaseBy){

obj.style.height = parseInt(obj.style.height) + increaseBy + "px";

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值