Current position: home page > Website Design >Code to control the pause of GIF animation

Code to control the pause of GIF animation

Author: blueleaf Classification: Website Design Time: May 8th, 2016 Browse: 11649 Comments: 1
It is good to share articles with some animated GIF pictures, which can display some information and make users understand the key points of the article better; GIF image files are larger than static images. If a page displays too many GIF animated images, the browser resources will be high when the page is opened, and the page will get stuck. At this time, we can use this special effect code to control the pause of GIF animated images. When the page is opened, all GIF animations will be paused, It only starts playing after clicking, which effectively reduces the browser resource occupation. This is a good user experience compared with playing GIF animation once the page is opened.
The JS file, which controls the pause of GIF animation, is less than 2KB in size and can be used by referencing it to the page in the following way jquery Library, so when installing the code, check whether the next page references the jquery library. If not, add the jquery library reference code yourself.
 Add the following code before the page source code</head>, and note the reference path of gifffer.js: <script type="text/ javascript " src="gifffer.js"></script> <script>$(document).ready(function(){$('img[src$=gif]').each(function(){var imgdata= $(this)[0].src;$(this).removeAttr('src').attr('data-gifffer',imgdata);})});window.onload = function(){Gifffer();}</script>

Code to control the pause of GIF animation

Source: Baidu online disk |    Size: 924KB |    Downloads: 1033

Disclaimer:

Website: Click Copy to share with friends!

All content resources shared by this website, if not noted, are original by Blueleaf. If you need to reprint, please indicate the source; Please contact us in case of infringement Contact handling Please understand!

Comment List
 blink the eyes kiss Growl happy think poor It's embarrassing Grievance ha-ha hush Right hum Zuo Hum Hum doubt A bad laugh Make money Sadness Be cool Seduce fierce handshake yeah Hee hee Shyness applause greedy Madness Embrace gather and watch Mighty awesome
Submit comments

Clear information
Close Comment
 Taoyougou
Taoyougou tourist
#1
This code seems to be useful only for local images
2017-05-18 19:26 reply
music appreciation
Back to top