drop()函数是一个内置函数,用于注册一个回调函数,每次在加载文件后将文件拖放到元素上时都会调用该回调函数。每个删除的文件都加载到内存中,并将其作为p5.File对象传递给回调函数。当同时删除多个文件时,它将显示对回调函数的多次调用。
此函数需要p5.dom库。因此,在index.html文件的开头部分添加以下行。
<script language="javascript"
type="text/javascript" src="path/to/p5.dom.js">
</script>
用法:
drop( callback, fxn )
参数:该函数接受上述和以下描述的两个参数:
- callback:此参数用于保存加载的文件,每次文件删除都将调用该文件。
- fxn:当使用drop事件删除文件时触发回调函数时使用此参数。
以下示例说明了p5.js中的drop()函数:
示例1:
function setup() {
// Create Canvas of given size
var cvs = createCanvas(400, 300);
// Set the background color
background('red');
// Set the text position
textAlign(CENTER);
// Set the font size
textSize(24);
// Set the text color
fill('white');
// Display the text on the screen
text('Drop file from device', width / 2, height / 2);
// Function to drop the file
cvs.drop(gotFile);
}
function gotFile(file) {
// Set the background color
background('green');
// Display the text on the screen
text('Received file name with extension:', width / 2, height / 2);
// Drop file with given position
text(file.name, width / 2, height / 2 + 50);
}
输出:
- 删除文件之前:
- 删除文件后:
示例2:
var img;
function setup() {
// Create Canvas of given size
var cvs = createCanvas(600, 400);
// Set the background color
background('red');
// Set the text position
textAlign(CENTER);
// Set the font size
textSize(24);
// Set the text color
fill('white');
// Display the text on the screen
text('Drop file from device', width / 2, height / 2);
// Function to drop the file
cvs.drop(gotFile);
}
function draw() {
if (img) {
image(img, 0, 0, width, height);
}
}
function gotFile(file) {
img = createImg(file.data).hide();
}
输出:
- 删除文件之前:
- 删除文件后:
相关用法
- CSS drop-shadow()用法及代码示例
- PHP next()用法及代码示例
- PHP pi( )用法及代码示例
- p5.js tan()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js pan()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 p5.js | drop() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。