Best Html, Css, jquery tutorials, Best jquery plugins, cool effects with jquery examples, demo, demos for beginners, designers, developers. jQuery Plugin Tutorial with example.
Don't wanna be here? Send us removal request.
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/ajslider-slideshow-jquery-plugin/
ajSlider - slideshow jQuery plugin
Download Demo
ajSlider is a slideshow jQuery plugin which can be used as the main banner for your webpages or as a image gallery. All you have to do is add the js files, initialize jQuery and add the img tag and anchor tags enclosed inside the ajSlider div. Features
Enable/Disable the automatic slideshow action. Set the height/width of the slider to your requirement or if not specified, it automatically calculates the size from the added images. Specify the colors for the slider bullets. Specify the position and size of the slide’s text content.
#ajslider#automatic slideshow#Content Slider#image Slider#jquery image gallery#jQuery Plugin#jquery plugin slideshow#slider bullets slider#Slideshow & Scroller
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/page-loads-display-progress-bar-using-jquery/
Page Loads - Display Progress Bar Using jQuery
Details – Download
Progress Bar is used to track the progress of the current process it can be used anywhere like file upload process,page load process etc.In this tutorial we will create and display progress bar while page is loading using jQuery and CSS.
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/bricks-js-a-light-fast-masonry-plugin/
Bricks js- A light & fast masonry plugin
Download Demo
Bricks.js is a javascript plugin for creating masonry layouts. Unlike many other masonry solutions, bricks.js has been built having performance in mind: no unnecessary features, no jQuery dependancy, easy to configure, blazing fast!
#Code stuff#JS effects & plugins and tagged javascript#Layouts#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Layout & Interface#Responsive
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/greedy-navigation-responsive-navigation-menu/
Greedy Navigation - Responsive navigation menu
Download Demo
Greedy Navigation is a responsive navigation menu that stacks items into a dropdown menu when they overflow
When the user resizes the window the nav will shrink, any overflowing items will be removed from the visible list and get prepended to a list of vertically stacked items that are hidden. The user is notified of this action by a count badge next to a hamburger icon at the end of the menu, which acts as a dropdown trigger button for the hidden list.
1. INCLUDE CSS AND JS FILES
<link href="greedynav.css" rel="stylesheet" type="text/css" > <script src="greedynav.js"></script>
2. HTML
<nav class='greedy'> <h1>GreedyNav</h1> <ul class='links'> <li><a href='#'>navbar</a></li> <li><a href='#'>that</a></li> <li><a href='#'>handles</a></li> <li><a href='#'>overflowing</a></li> <li><a href='#'>menu</a></li> <li><a href='#'>elements</a></li> <li><a href='#'>effortlessly</a></li> </ul> <button>MENU</button> <ul class='hidden-links hidden'></ul> </nav>
Share
#DROPDOWN TRIGGER#GREEDYNAV#items dropdown#MENU GREEDY#MENU STACKS#navigation#NAVIGATION NAV MENU#responsive navigation#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Menu & Navigation#Responsive
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/modern-copy-to-clipboard-clipboard-js/
Modern copy to clipboard - Clipboard.js
Download Demo
Clipboard.js is a modern approach to copy text to clipboard
Why
Copying text to the clipboard shouldn’t be hard. It shouldn’t require dozens of steps to configure or hundreds of KBs to load. But most of all, it shouldn’t depend on Flash or any bloated framework. That’s why clipboard.js exists.
Browser Support
This library relies on both Selection and execCommand APIs. The second one is supported in the following browsers.
Chrome 42+
Firefox 41+
IE 9+
Opera 29+
Safari ✘
Although copy/cut operations with execCommand aren’t supported on Safari yet (including mobile), it gracefully degrades because Selection is supported.
That means you can show a tooltip saying Copied! whensuccess event is called and Press Ctrl+C to copy when errorevent is called because the text is already selected.
For a live demonstration, open this site on Safari.
#clipboard#clipboard.js#copy text#copying text#cut content#modern approach#text to clipboard#trigger element#Css / Css3 Plugins & Demos#Form#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Others#Responsive
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/smooth-scrolling-library-jump-js/
Smooth Scrolling Library - Jump.js
Download Demo
Usage
Jump was developed with a modern JavaScript workflow in mind. To use it, it’s recommended you have a build system in place that can transpile ES6, and bundle modules. For a minimal boilerplate that fulfills those requirements, check out outset.
Follow these steps to get started:
Install
Instantiate
Jump
Install
Using NPM, install Jump.js, and add it to your package.json dependencies.
$ npm install jump.js --save
Instantiate
Simply import Jump, then instantiate it. No options are passed to the constructor.
// import Jump import Jump from 'jump.js' // create an instance const Jump = new Jump()
It’s recommended that you assign your Jump instance to a variable. One instance can make infinite jumps.
Jump
Two parameters are required to make a jump:
A target
An options object
Target
To jump to an element, pass a CSS selector as a string.
Jump.jump('.selector', // options... )
To scroll from the current position, pass a number of pixels, positive or negative.
// down one viewport height Jump.jump(window.innerHeight, // options... ) // up 100px Jump.jump(-100, // options... )
Options
Note that duration is required for every jump().
Defaults are shown below, explanation of each option follows.
Jump.jump('.selector', duration: /* REQUIRED, no default */, offset: 0, callback: undefined, easing: (t, b, c, d) => // Robert Penner's easeInOutQuad - http://robertpenner.com/easing/ t /= d / 2 if(t < 1) return c / 2 * t * t + b t-- return -c / 2 * (t * (t - 2) - 1) + b )
duration
How long the jump() takes, in milliseconds.
Jump.jump('.selector', duration: 1000 )
Or, a function accepting distance (in px) as an argument, and returning the duration (in milliseconds) as a number.
Jump.jump('.selector', duration: (distance) => Math.abs(distance) )
offset
Offset a jump(), only if to an element, in pixels.
Useful for accomodating elements fixed to the top/bottom of the screen.
Jump.jump('.selector', offset: 100 )
callback
Fired after the jump() has been completed.
Jump.jump('.selector', callback: () => console.log('Jump completed!') )
easing
Easing function used to transition the jump().
Jump.jump('.selector', easing: (t, b, c, d) => return c * (t /= d) * t + b )
#dependency free#javascript#library#lightweight#modern#scroll#scroller#smooth scroll#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Others#Responsive
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/audio-controls-simple-lightweight-jquery-plugin/
Audio Controls - simple lightweight jQuery plugin
Download Demo
AudioControls simple lightweight jQuery plugin, helps you to create your own audio player, playlist and additional features.
Include script after the jQuery library (unless you are packaging scripts somehow else):
<script src="/path/to/jquery.audioControls.js"></script>
Do not include the script directly from GitHub (http://raw.github.com/…). The file is being served as text/plain and as such being blocked in Internet Explorer on Windows 7 for instance (because of the wrong MIME type). Bottom line: GitHub is not a CDN.
Data Attributes
Data attributes are heart of this plugin, attributes helps to detect and enables audio controls.
HTML attribute key must be data-attr
<a href="#" class="play" data-attr="playPauseAudio"></a>
This will enable Play and Pause control for the anchor tag.
Read more:http://arunkumarsekar.github.io/audioControls/
#Image effect#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Image Effects#Jquery Plugins & Demos#Slideshow & Scroller
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/infobox-to-create-a-map-label/
InfoBox to Create a Map Label
Download Demo
nfoBox extends the Google Maps JavaScript API V3 OverlayView class.
An InfoBox behaves like a google.maps.InfoWindow, but it supports several additional properties for advanced styling. An InfoBox can also be used as a map label.
How to use
InfoBox Examples
Note: Be sure to include infobox.js or infobox_packed.js in your HTML document.
<script src="/path/to/infobox.js" type="text/javascript"></script>
The example below shows the typical use of an InfoBox — as an enhanced version of an InfoWindow. The background of the InfoBox is set to an 8-pixel high, mostly-transparent GIF that has an upward pointing arrow 140 pixels to the right (half-way along the width of the InfoBox). The content for the InfoBox has margin-top set to 8px so that this background image is visible; the rest of the InfoBox appears yellow because that’s the background color of the content. The pixelOffset is set to (-140, 0) so that the InfoBox is centered appropriately.
var marker = new google.maps.Marker( map: theMap, draggable: true, position: new google.maps.LatLng(49.47216, -123.76307), visible: true ); var boxText = document.createElement("div"); boxText.style.cssText = "border: 1px solid black; margin-top: 8px; background: yellow; padding: 5px;"; boxText.innerHTML = "City Hall, Sechelt<br>British Columbia<br>Canada"; var myOptions = content: boxText ,disableAutoPan: false ,maxWidth: 0 ,pixelOffset: new google.maps.Size(-140, 0) ,zIndex: null ,boxStyle: background: "url('tipbox.gif') no-repeat" ,opacity: 0.75 ,width: "280px" ,closeBoxMargin: "10px 2px 2px 2px" ,closeBoxURL: "http://www.google.com/intl/en_us/mapfiles/close.gif" ,infoBoxClearance: new google.maps.Size(1, 1) ,isHidden: false ,pane: "floatPane" ,enableEventPropagation: false ; var ib = new InfoBox(myOptions); ib.open(theMap, marker);
Using InfoBox to Create a Map Label
This example shows how to use an InfoBox as a map label. One important step is to set the pane property to “mapPane” so that the InfoBox appears below everything else on the map. It’s also necessary to set closeBoxURLto “” so that the label will not have a close box, to set disableAutoPane to true so that the map does not pan when the label is added, and to set enableEventPropagation to true so that events will be passed on to the map for handling.
var labelText = "City Hall"; var myOptions = content: labelText ,boxStyle: border: "1px solid black" ,textAlign: "center" ,fontSize: "8pt" ,width: "50px" ,disableAutoPan: true ,pixelOffset: new google.maps.Size(-25, 0) ,position: new google.maps.LatLng(49.47216, -123.76307) ,closeBoxURL: "" ,isHidden: false ,pane: "mapPane" ,enableEventPropagation: true ; var ibLabel = new InfoBox(myOptions); ibLabel.open(map);
#gmap infobox#gmap infowindow#gmap plugin#google map#infobox#infobox for maps#infobox tutorial#infowindow#map api#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Maps#Others#Responsive
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/scrollmenu-js-side-stylish-scrollbar/
ScrollMenu.js - side stylish scrollbar
Download Demo
ScrollMenu.js is a new interface to replace your old boring scrollbar.
Why Scroll Menu ?
ScrollMenu.js transforms your scroll bar to awesome scroll menu.
Single page navigation menu and scroll bar binds together.
It gives a user sense of where they are in a page and how long is that section.
With a high customizability of plugin you can have a unique user experience.
Allow templating for menu content.
Styling is seperated out to css, so you can change look of scrollMenu to have uniqueness.
Support touch devices.
Uses native scroll and can be easily hooked with any custom scroll.
Its light weight (< 3kb gzipped and minified).
#custom scroll#menu content#menu section#native scroll#navigation#Page Navigation#scroll#scroll menu#scrollbar#scrollmenu.js#Bootstrap#Bootstrap plugins#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Menu & Navigation#Responsive
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/stylish-jssor-slider/
Stylish Jssor Slider
Download Demo
Touch Swipe by Finger/Mouse
Jssor Slider is touch swipe image slider with 390+ caption slide effects. When touch Jssor Slider, it will freeze and then move to the direction that finger swipes to. It comes with easy to use generation tool and full javascript source code.
Responsive
Jssor Slider is reponsive by calling API. The API method ‘$SetScaleWidth’ is the best performance responsive slider approach, Jssor Slider can be scaled to any size at realtime.
Mobile Device Optimized
Jssor Slider works on any javascript enabled browser, including Windows Phone, iOS, Android and Opera Mobile etc. And Jssor Slider is well tested on Samsung mobile, iPhone, iPad, HTC, Blackberry.
Both jQuery Slider Plugin, No-jQuery Version Available
Jssor jQuery slider plugin and No-jQuery version slider work almost the same, both are for image slider, content slider. Slideshow and caption slide animation are all available for both version.
jQuery developers benifit on jQuery js library. No-jQuery version is slider without jQuery. Non-jQuery developers benifite on light weight cut/paste code snipet, which is eligible for eBay listing, blogger post, or embed into any web page freely.
390+ Caption Effects/Transitions
Tons of options enable you build your own caption transition. You can start with fade, move, clip, wave, jump, rotate or zoom transitions, and so many more that you can imagine. And you can combine 2 or more transitions as well. See 390+ caption transitions.
360+ Slideshow Effects/Transitions
Jssor Slider comes with 360+ awesome slideshow effects, and the most scalable slideshow transition build tool enables you build infinite slideshow transitions. See360+ slideshow transitions.
30+ Professional Themes
It comes with 30+ professional demos (and growing).
Scalable Layout Engine
Scalable layout engine makes deep customization possible. It means that the interface is adaptive, user can add or remove navigator, arrow navigator and thumbnail navigator, or any decoration interface. User can populate skin freely.
Light Weight by Smart Compression
Jssor Slider is independent javascript slider, it depends no third party javascript library. The smart compression engine reserves code only necessary. All codes relate to unused features will be removed clearly. The size of final independent javascript code is minimum 15 KB.
Cut & Paste, Free Embedding
Jssor Slider comes with clean and anonymous wrapped javascript code snippet. No additional css file needed, no additional javascript file needed. There is no version conflict issue, there is no conflict with any other javascript library.
Cross Browser, All Browsers Supported
Jssor Slider is cross browser slider, all browsers are supported (IE 6+, Firefox 2+, Chrome 3+, Safari 3+, Opera 10+, iOS Safari, Opera Mobile, Android Browser, iPhone, iPad, Mac, Windows Surface etc.).
Development Kit + Open Source
Jssor Slider comes with full javascript source code with detailed api documentation, tons of simple examples, 30+ professional demos.
Free Upgrades, Free Future Versions
Free download, free upgrade. Always free with no charge.
eBay Friendly (eBay Store + eBay Listing)
Please just compress to code snippet and then cut and paste Jssor Slider into your ebay listing template, your ebay store home page. What you can do with Jssor Slider? eBay Store Banner Rotator, eBay Store Promotion, Product Presentation, eBay Listing Image Gallery etc. Note that please Do Not link to external script.
Blogger Friendly (Blogger Post)
Please just cut and paste Jssor Slider into your blogger post. Isn’t the best blogger slider? Isn’t it easy? Cheers! Do you know that you can paste Jssor Slider into any web page?
Arrow Key Navigation
Keyboard arrow key navigation is enabled, press arrow left key to swipe left, press arrow right key to swipe right.
#Carousel#Content Slider#finger swipes#jssor slider#Responsive Slider#SLIDE ANIMATION#slide effects#slider caption#slider touch#Slideshow#swipe image#Bootstrap plugins#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Image Effects#Jquery Plugins & Demos#Responsive#Slideshow & Scroller
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/jcolumn-make-selected-html-elements-the-same-height/
jColumn - Make selected html elements the same height
Download Demo
jColumn is a lightweight JavaScript library to make selected html elements the same height. It can be used as standalone JavaScript library or jQuery plugin. Size: 556 Bytes
#height jcolumn#html elements#JAVASCRIPT LIBRARY#jcolumn#jquery plugin. elements same#same height#script jcolumn plugin#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Others
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/clipboard-js-modern-copy-to-clipboard-2/
Clipboard.js - Modern copy to clipboard
Download Demo
Clipboard.js is a modern approach to copy text to clipboard
Why
Copying text to the clipboard shouldn’t be hard. It shouldn’t require dozens of steps to configure or hundreds of KBs to load. But most of all, it shouldn’t depend on Flash or any bloated framework. That’s why clipboard.js exists.
Browser Support
This library relies on both Selection and execCommand APIs. The second one is supported in the following browsers.
Chrome 42+
Firefox 41+
IE 9+
Opera 29+
Safari ✘
Although copy/cut operations with execCommand aren’t supported on Safari yet (including mobile), it gracefully degrades because Selection is supported.
That means you can show a tooltip saying Copied! whensuccess event is called and Press Ctrl+C to copy when errorevent is called because the text is already selected.
For a live demonstration, open this site on Safari.
#approach#clipboard#clipboard.js#copy text#copying text#cut content#element#modern#text to clipboard trigger#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Text & Link Effects
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/shorten-automatically-shorten-text/
Shorten - automatically shorten text
Download Demo
Shorten is a simple jquery plugin that automatically shortens text within an element and add “more” link.
1. INCLUDE JS FILES
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript" src="../src/jquery.shorten.js"></script>
2. HTML
Below is the sample text. Each text is wrapped in a DIV tag. Note that we have added a class “more” in each div. This class will decide if a text needs to be shortened and show more link showed or not.
<div class="comment more"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum laoreet, nunc eget laoreet sagittis, quam ligula sodales orci, congue imperdiet eros tortor ac lectus. Duis eget nisl orci. Aliquam mattis purus non mauris blandit id luctus felis convallis. Integer varius egestas vestibulum. Nullam a dolor arcu, ac tempor elit. Donec. </div> <div class="comment more"> Duis nisl nibh, egestas at fermentum at, viverra et purus. Maecenas lobortis odio id sapien facilisis elementum. Curabitur et magna justo, et gravida augue. Sed tristique pellentesque arcu quis tempor. </div> <div class="comment more"> consectetur adipiscing elit. Proin blandit nunc sed sem dictum id feugiat quam blandit. Donec nec sem sed arcu interdum commodo ac ac diam. Donec consequat semper rutrum. Vestibulum et mauris elit. Vestibulum mauris lacus, ultricies. </div>
3. CSS
Below is the CSS code for our example. Note the class “.morecontent span” is hidden. The extra text from the content is wrapped in this span and is hidden at time of page loading.
a color: #0254EB a:visited color: #0254EB a.morelink text-decoration:none; outline: none; .morecontent span display: none; .comment width: 400px; background-color: #f0f0f0; margin: 10px;
4. JAVASCRIPT
Below is the Javascript code which iterate through each DIV tags with class “more” and split the text in two. First half is showed to user and second is made hidden with a link “more..”.
You can change the behaviour by changing following js variables.
showChar: Total characters to show to user. If the content is more then showChar, it will be split into two halves and first one will be showed to user.
ellipsestext: The text displayed before “more” link. Default is “…”
moretext: The text shown in more link. Default is “more”. You can change to “>>”
lesstext: The text shown in less link. Default is “less”. You can change to “<<“
$(document).ready(function() var showChar = 100; var ellipsestext = "..."; var moretext = "more"; var lesstext = "less"; $('.more').each(function() var content = $(this).html(); if(content.length > showChar) var c = content.substr(0, showChar); var h = content.substr(showChar-1, content.length - showChar); var html = c + '<span class="moreellipses">' + ellipsestext+ ' </span><span class="morecontent"><span>' + h + '</span> <a href="" class="morelink">' + moretext + '</a></span>'; $(this).html(html); ); $(".morelink").click(function() if($(this).hasClass("less")) $(this).removeClass("less"); $(this).html(moretext); else $(this).addClass("less"); $(this).html(lesstext); $(this).parent().prev().toggle(); $(this).prev().toggle(); return false; ); );
#automatically#jQuery Plugin#link#long text more#shorten#shorten text#show less shortened#show more#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Tabs#Text & Link Effects
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/multiple-practical-effect-for-building-parallax-websites/
Multiple Practical Effect For Building Parallax Websites
Download Demo
Websites with scroll animations are all the rage these days. we’re going to show you a few practical examples for building them. You can think of this article as a collection of building blocks which you can mix and match into an impressive interactive web page.
The Basic Idea
The usual way that these websites are built is by using a JavaScript library. Some of the popular choices are Scrollr, scrollMagic, Parallax.js, scrollReveal.js and others. We are going to use Scrollr today as it is the most popular and works on mobile devices.
To use Scrollr, you only need to download it’s source and create a link to it in your HTML. After that’s done, calling skrollr.init(); will enable Scrollr for all elements on the page.
<script src="assets/skrollr.min.js"></script>
<script>
skrollr.init();
</script>
The library is very powerful and you can create all kinds of scroll animations with it. See the website that we were able to build with it:
Want to learn how it was made? Keep on reading!
Introduction to Scrollr
Once you have the Scrollr library in your page, you add data attributes to the elements you wish to animate while the page is scrolled. Here’s the most basic example, which animates a div from blue to red:
<div data-bottom-top="background-color: rgb(255,0,0);"
data-center-center="background-color: rgb(0,0,255);">
</div>
We have a simple div with a pair of attributes. The first attribute will tell Scrollr when the animation starts and the second one when it should end. As you can see, the animation itself is done via CSS properties (note that you need to specify the colors as rgb). The library smoothly transitions from one to the other.
Using these data attributes, you can create all kinds of interesting effects. Here are a few practical examples that show you what you can do.
#scroll effect#Text Effect#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Image Effects#Jquery Plugins & Demos#Others#Responsive#Slideshow & Scroller
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/pws-tabs-jquery-plugin-2/
PWS Tabs jQuery Plugin
Download Demo
Help me improve, share PWS Tabs jQuery Plugin with your friends.
Getting Started
1) Include jQuery library and jQuery PWS Tabs plugin in the <head> section.
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<link type="text/css" rel="stylesheet" href="jquery.pwstabs.css">
<script src="jquery.pwstabs.js"></script>
2) Create tabbed panels and use HTML5 data-pws-* attributes to specify the ID & Name for the tabs.
<div class="hello_world">
<div data-pws-tab="anynameyouwant1" data-pws-tab-name="Tab Title 1">Our first tab</div>
<div data-pws-tab="anynameyouwant2" data-pws-tab-name="Tab Title 2">Our second tab</div>
<div data-pws-tab="anynameyouwant3" data-pws-tab-name="Tab Title 3">Our third tab</div>
</div>
data-pws-tab is used to initiate the tab and as its ID.
data-pws-tab-name is used for a tab display name.
data-pws-tab-icon is used to add an icon to a tab. Full URL to the icon (image).
3) Call the plugin on the parent element to create a basic tabs interface with 100% width and ‘scale’ transition effect.
jQuery(document).ready(function($)
$('.hello_world').pwstabs();
);
#» Form#Gallery#responsive#tebs#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Others
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/clipboard-js-modern-copy-to-clipboard/
Clipboard.js - Modern copy to clipboard
Download Demo
Clipboard.js is a modern approach to copy text to clipboard
Why
Copying text to the clipboard shouldn’t be hard. It shouldn’t require dozens of steps to configure or hundreds of KBs to load. But most of all, it shouldn’t depend on Flash or any bloated framework. That’s why clipboard.js exists.
Browser Support
This library relies on both Selection and execCommand APIs. The second one is supported in the following browsers.
Chrome 42+
Firefox 41+
IE 9+
Opera 29+
Safari ✘
Although copy/cut operations with execCommand aren’t supported on Safari yet (including mobile), it gracefully degrades because Selection is supported.
That means you can show a tooltip saying Copied! whensuccess event is called and Press Ctrl+C to copy when errorevent is called because the text is already selected.
For a live demonstration, open this site on Safari.
#clipboard#clipboard.js#copy text#copying text#cut content#modern approach#text to clipboard#trigger element#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Jquery Plugins & Demos#Responsive#Text & Link Effects
0 notes
Text
New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/responsive-overlay-menu-framework/
Responsive Overlay Menu Framework
Download Demo
A framework for making responsive cross-browser overlay menus.
Features
works in all browsers
works on all device
tiny
responsive
super fast
uses jQuery animations
free to use and abuse (MIT licence)
#framework#hamburger toggle#jQuery#Menu#overlay menu#responsive#Responsive menu#responsive overlay menu#Bootstrap plugins#Css / Css3 Plugins & Demos#HTML / HTML5 Plugins & Demos#Image Effects#Jquery Plugins & Demos#Responsive
0 notes