/* Plugin Name: image_cycling_home The above line is a lie, but makes this file easily editable as a plugin in Wordpress. Description: THIS IS NOT A PLUGIN. This is a file containing javascript code, so don't try to activate it as a plugin! It is recommended to edit this file in "Plugin File Editor". This file is located in "wp-content/plugins/image_cycling/" and needs to be backed up. */ /* ------------- Instructions: ------------- * All pictures in this gallery must have the same aspect ratio or parts of the web page will bounce around as the pictures cycle. Crop and scale your pictures to make this so. * Update the "imgs" code below to add/subtract or change the order or timing of pictures being shown in this photo carousel. * Edit this file directly in the "Edit Plugins Editor" or upload new versions of this file directly to the wp-content/plugins/image_cycling/ file folder. * Clear web browser data, then reload the gallery's webpage to check your work. */ ( function() { var imgs = new Array(); var imgcnt = 0; var thisimg = 0; /* Note: The image that was already loaded before calling this plugin will be shown for the same interval as these images. The next line is skipped on first pass, but used on following passes. */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP8820_cs.jpg'; /* ALES pilots and planes */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/ff_0004.jpg'; /* FF stick and thread plane */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP7076a_cs.jpg'; /* TD One Design Contest pilots and planes */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/DSC_8468_ccs.jpg'; /* TD Frank Strommer */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP7078_ccs.jpg'; /* TD Pete Nicholson smiling with BOT */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/scaled_IMGP1439_S_ESL_2013jun23_ccs.jpg'; /* TD Ken driving tractor */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/td_0001.jpg'; /* TD Bob w/beater */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/DSC_8513_ccfs.jpg'; /* TD Bob's beater overhead */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP2301_S_ESL2013Sep22_cc.jpg'; /* TD launch */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP1283c_S_ESL_2013jun22_s_cc.jpg'; /* TD contest flight line */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/136676015_ccs.jpg'; /* TD Pete Nicholson overhead */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/DSC00012e_cc.jpg'; /* TD Steve Lucke hand throw */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/td_0002.jpg'; /* TD Steve Lucke launch */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP1030_R_ESL2013Sep22_ccs.jpg'; /* TD org and wht landing */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP1046_R_ESL2013Sep22_ccs.jpg'; /* TD red and wht landing */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/DSC_8472_ccs.jpg'; /* TD audience */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP1786c_S_RES_Day_Picnic_2013Aug10_ccs.jpg'; /* TD */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP1075_R_ESL2013Sep22_ccs.jpg'; /* TD award */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/e_0002.jpg'; /* E Herb */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/e_0001.jpg'; /* E Ed launch - cold */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP8786_cs.jpg'; /* ? cold weather flying */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP7169_css.png'; /* TD Nelson - launching Meroke BOT */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/IMGP6018ad_ccs.jpg'; /* TD Meroke BOT flying */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/ff_0002.jpg'; /* FF Steve Sweeney launching */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/ff_0003.jpg'; /* FF Mike Lavelle launching */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/ff_0001.jpg'; /* FF flying overhead */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/ff_0005.jpg'; /* FF performance plane */ /* Photo carousel restarts with this command. */ imgs[imgcnt++] = 'https://www.longislandsilentflyers.org/content/images/pictures_cycling/home/ff_0006.jpg'; /* FF launch */ function rotate() { if( document.images) { thisimg++; if (thisimg >= imgcnt) thisimg = 0; document.getElementById('image_cycling_home').src = imgs[thisimg]; } } /* Interval is in milliseconds (1 second = 1000 milliseconds) */ setInterval( rotate, 5000); } ) ();