The copy function is often used in development, and it is relatively simple to implement under IE. But it is more difficult to achieve cross-browser. This article will introduce a cross-browser library class Zero Clipboard. It uses Flash for copying, so it can run as long as the browser has Flash installed, and is more flexible than IE's document.execCommand("Copy").
The implementation principle of Zero Clipboard
Zero Clipboard uses Flash to copy. There was a previous Clipboard Copy solution, which used a hidden Flash. But the latest Flash Player 10 only allows operations on Flash to activate the clipboard. So Zero Clipboard improved this and used a transparent Flash to float above the button. In this way, what is actually clicked is not the button but the Flash, and the copy function of Flash can be used.
How to use Zero Clipboard
First download Zero Clipboard and unzip it. Two files are required: ZeroClipboard.js and ZeroClipboard.swf. Put these two files into your project.
Download address
Zero Clipboard open source JavaScript flash copy library class
Demo address:
http://demo.jb51.net /js/ZeroClipboard/index.html
Core Functions
The first step is to import the ZeroClipboard.js file:
Set the path of the ZeroClipboard.swf file:
ZeroClipboard.setMoviePath( "ZeroClipboard.swf" );
Note: The paths of the above two files, ZeroClipboard.js and ZeroClipboard.swf, need to be replaced with the paths of the corresponding files in your project. Or it can be an absolute path.
Then use:
var clip = new ZeroClipboard.Client(); // Create a new object
clip.setHandCursor( true ); // Set the mouse to hand type
clip.setText("Haha"); / / Sets the text to be copied.
// Register a button, the parameter is id. Clicking this button will copy it.
//This button does not necessarily need to be an input button, it can also be other DOM elements.
clip.glue("copy-botton"); // The position cannot be interchanged with the previous sentence
In this way, the basic function is realized, and the set text can be copied by clicking the button. You may have noticed that the text to be copied is fixed. What if you want to change it dynamically, such as copying the content in an input box. Don’t worry, we’ll cover that below.
Other functions
Zero Clipboard also provides some other functions, some of which are very useful.
reposition() method
Because there is a Flash button floating on the button, when the page size changes, the Flash button may be misplaced and cannot be clicked. It doesn't matter, Zero Clipboard provides a reposition() method that can recalculate the position of the Flash button. We can bind it to the resize event.
bind(window, "resize", function(){
clip.reposition();
});
bind is a cross-browser event binding function.
================================================== ==========
Everyone must know this. The event binding function of IE is attachEvent; while Firefox and Safari are addEventListener; Opera supports both. Encapsulation is done below.
/************************************
* Add event binding
* @param obj: The element to which the event will be bound
* @param type: event name. Do not add "on". For example: "click" instead of "onclick".
* @param fn: event handling function
********************** *****************/
function bind( obj, type, fn ) {
if ( obj.attachEvent ) {
obj['e' type fn] = fn;
obj[type fn] = function(){obj['e ' type fn]( window.event );}
obj.attachEvent( 'on' type, obj[type fn] );
} else
obj.addEventListener( type, fn, false );
}
For example, add a page click event:
bind(document, "click", function() {
alert("Hello, World!!");
});
================================================== ==========
hide() and show() methods
These two methods can hide and show Flash buttons. The show() method calls the reposition() method.
setCSSEffects() method
When the mouse moves over or clicks on the button, pseudo-classes such as css ":hover", ":active" and other pseudo-classes may become invalid due to the obstruction of the Flash button. The setCSSEffects() method solves this problem. First we need to change the pseudo-class to a class, for example:
#copy-botton:hover{
border-color:#FF6633;
}
// Can be changed to the following ":hover" to ".hover"
#copy-botton.hover {
border-color:#FF6633;
}
We can call clip.setCSSEffects( true ); so that Zero Clipboard will automatically handle it for us: treat class.hover as a pseudo class :hover.
getHTML() method
If you want to instantiate Flash yourself without using the Zero Clipboard attachment method, then this method can help. It accepts two parameters, the width and height of the Flash. What is returned is the HTML code corresponding to Flash. For example:
var html = clip.getHTML( 150, 20 );
You can use innerHTML or document.write(); directly for output.
The following is the HTML code output under my test:
There is a bug in IE's Flash JavaScript communication interface. You must insert an object tag into an existing DOM element. And before writing innerHTML, make sure that the element has been inserted into the DOM using the appendChild method.
Zero Clipboard event handling
Zero Clipboard provides some events, and you can customize functions to handle these events. The Zero Clipboard event handling function is addEventListener(); for example, an event "load" will be triggered when Flash is completely loaded.
clip.addEventListener( "load", function(client) {
alert("Flash loaded!");
});
Zero Clipboard will pass the clip object as a parameter enter. That is "client" in the above example.
Also "load" can also be written as "onLoad", and other events can also be written like this.
Other events include:
mouseOver mouse up event
mouseOut mouse out event
mouseDown mouse down event
mouseUp mouse up event
complete Copy Success events
Among them, mouseOver event and complete event are more commonly used.
As mentioned before, if you need to dynamically change the content to be copied, the mouseOver event can come in handy. For example, if we need to dynamically copy the value in an input box with the id of test, we can reset the value when the mouse is over.
clip.addEventListener( "mouseOver", function(client) {
var test = document.getElementById("test");
client.setText( test.value ); // Reset Value to copy
});
Copy successfully:
clip.addEventListener( "complete", function(){
alert("Copy successfully!");
} );
Okay, let’s introduce it here. Try it out yourself now.