Here’s a website development tip: DynamicDrive

Banner2017v4

I maintain the website for my homeowner association. Perhaps you maintain your own websites? I have found that Dynamic Drive has free code samples available that can help you jazz up your site. For example, I found some JavaScript code that displays a slideshow of images. It’s pretty simple code that can be used with attribution from Dynamic Drive on your site. You copy, paste, fill in some blanks, and voila, you’re a JavaScript programmer  

My instance of the slideshow code looks like:

  http://fadeslideshow.js
  
   var mygallery=new fadeSlideShow({
    wrapperid: “fadeshow1”, //ID of blank DIV on page to house Slideshow
    dimensions: [960, 512], //width/height of gallery in pixels. Should reflect dimensions of largest image
    imagearray: [
        [“images/banner_sunrise3.jpg”],
        [“images/banner_greenbelt.jpg”],
        [“images/banner_flowers.jpg”],
        [“images/banner_along_the_water.jpg”],…

Read more