Note that there are some explanatory texts on larger screens.

plurals
  1. POFading Java slideshow script
    primarykey
    data
    text
    <p>I want to create a simple fading java slide show. I created a very simple image viewer using lists and some javascript this was very basic and clunky. The effect im trying to achieve can be seen at this link[1]: <a href="http://www.jessicakripp.com" rel="nofollow">http://www.jessicakripp.com</a> I just need to create this effect with 4 to 5 images in one place holder. Can the effect only be achieved through jquery I was intending trying to do this with straight javascript. The other resources I have looked at give some code but i have been unsuccessful at implementing this. Could someone provide me a simple reusable solution to this. Please see the code im currently using for my gallery which is not very elegant.My code uses a list to select the images within a placeholder.</p> <p>Web Page Code</p> <pre><code>&lt;body&gt; &lt;h1&gt;Snap Shots&lt;/h1&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="images/chips.jpg" onclick="showPic(this); return false;" title="a plate of chips"&gt;Chips&lt;/a&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="images/rice.jpg" onclick="showPic(this); return false;" title="a plate of rice"&gt;Rice&lt;/a&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="images/beach.jpg" onclick="showPic(this); return false;" title="a beach"&gt;Beach&lt;/a&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="images/seats.jpg" onclick="showPic(this); return false;" title="a seat"&gt;Seats&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt; &lt;img id="placeholder" src="images/placeholder.jpg" alt="my image gallery" /&gt; &lt;/body&gt; </code></pre> <p>Javascript Function</p> <pre><code>function showPic(whichpic) { var source = whichpic.getAttribute("href"); var placeholder = document.getElementById("placeholder"); placeholder.setAttribute("src",source); } </code></pre> <p>Many thanks</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload