剪贴板粘贴图片自动上传服务器和又拍云

chrome支持剪贴板事件,因此,利用这个事件,完成剪贴板图片直接粘贴,并自动上传服务器功能。 另外就是对于最新版firefox,可以直接粘贴,不用任何处理。原理是按照base64编码,直接将图片数据存入img标签的src中。 是方便了编辑,但是在其他不支持base64为src的浏览器,比如低版本IE,就无法展示图片了。 所以为了兼容性,还是将图片上传到web服务器的好。 网上能支持图文混排的word文档粘贴的,都需要安装activeX控件,而且收费还比较贵。 在时间、金钱、需求之间取个平衡了~ 下面是修改步骤: admin/editor/kindeditor.js 末尾加上: $(document).ready(function(){ var KE =editorMap[‘content’]; if(KE){ if(KE.isEmpty()){ KE.insertHtml(‘Chrome下可直接粘贴图片,并自动上传服务器,欢迎体验~’); } KE.edit.doc.onpaste = function(event){ // console.log(‘content bind onpaste.’); // use event.originalEvent.clipboard for newer chrome versions var items = (event.clipboardData || event.originalEvent.clipboardData).items; console.log(JSON.stringify(items)); // will give you the mime types // find pasted image among pasted items var blob; for (var i = 0; i < items.length; i++) { if (items[i].type.indexOf(“image”) === 0) { blob = items[i].getAsFile(); } } // load image if there is a pasted image // console.log(blob); if (blob !== null && blob != undefined) …

>>Read more

机械设计技巧

无法提供摘要。这是一篇受保护的文章。

Dot-B主题CSS样式

/* Theme Name: Dot-B

页面: 1 2 3 4 5 6

两款不错的表格样式

简洁,不错!

GB1804 线性尺寸的极限偏差数值

 GB1804 线性尺寸的极限偏差数值

智能计算器

智能计算(支持JS Math函数)

智能计算器源码

源代码

利用CSS让文本只显示一行,超出则显示省略号

示例代码:

常用的CSS书写习惯

一、CSS文件及样式命名 1、CSS文件命名规范 全局样式:global.css; 框架布局:layout.css; 字体样式:font.css; 链接样式:link.css; 打印样式:print.css;

webuploader与uploadify合体的上传插件

这是我参考webuploader与uploadify修改的上传插件,包含两个上传项目。 第一个:根据uploadify(由swfupload改装)改装而成;第二个:在webuploader的基础上进行了集成。