adding an information ticker to your site
Forum » Help / General support requests » adding an information ticker to your site
Started by: garethggarethg
On: 1245279060|%e %b %Y, %H:%M %Z|agohover
Number of posts: 3
rss icon RSS: New posts
adding an information ticker to your site
garethggarethg 1245279060|%e %b %Y, %H:%M %Z|agohover

Has anyone implemented adding an information ticker (where you can control the content) into their wiki so that, for example, it scrolls across and allows users to read the content placed there ? Even better would be for the content items to be links that could be clicked.

I'm guessing some [[embed]] tag with a service would be the way to go …

Thanks in advance.

unfold adding an information ticker to your site by garethggarethg, 1245279060|%e %b %Y, %H:%M %Z|agohover
Re: adding an information ticker to your site
RobElliottRobElliott 1245312373|%e %b %Y, %H:%M %Z|agohover

In html-speak this is called a marquee and is very straightforward to do, including having several options with links. You just need an html codeblock and an iframe.

First put the following codeblock on your page:

[!--
[[code type="html"]]
<HTML>
  <BODY>
<marquee 
    behavior="alternate" 
    direction="left" 
    bgcolor="#D5F8B4" 
    scrollamount="6"
    onmouseover="this.stop()" 
    onmouseout="this.start()" 
    <a href="http://snippets.wikidot.com">Snippets/</a>
    <a href="http://kuler.adobe.com/#create/fromacolor">Adobe Kuler/</a>
    <a href="http://strathviewconsultants.wikidot.com">Strathview Consultants</a>
 </marquee>

</BODY>
</HTML>
[[/code]]
--]

Then underneath it add an iframe to reference that codeblock:
[[iframe http://yoursite.wikidot.com/yourpage/code/1 frameborder="0" scrolling="no" width="600px" height="50px"]]

This gives the result below. I have put an explanation of the different marquee parameters on my page here.

Edit: curiously Gareth I have an aunt and uncle who live in Bishops Cleeve.

Rob


ad5.png
last edited on 1245348037|%e %b %Y, %H:%M %Z|agohover by RobElliott + show more
unfold Re: adding an information ticker to your site by RobElliottRobElliott, 1245312373|%e %b %Y, %H:%M %Z|agohover
Re: adding an information ticker to your site
garethggarethg 1245351076|%e %b %Y, %H:%M %Z|agohover

Hello Rob,

Perfect - thanks ! I took a look at your site as well - some great code samples.

What a small world ! - hope they like living here.

Gareth

unfold Re: adding an information ticker to your site by garethggarethg, 1245351076|%e %b %Y, %H:%M %Z|agohover
New post

Bookmark and Share

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Share Alike 2.5 License.