README - jscancer - Javascript crap (relatively small)
(HTM) git clone git://git.codemadness.org/jscancer
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
README (1384B)
---
1 Narrowcasting
2 -------------
3
4 This is a simple script for some "narrowcasting" screen.
5
6 Certain configuration options can be defined by setting data attributes on HTML
7 elements. The script will then handle the widgets and slides logic.
8
9
10 Some features:
11
12 * Support embedding of data in <iframe>'s and refresh using some timer.
13 * Support embedding of data in <embed> and update using some timer.
14 * Support updating parts of the screen data using XMLHttpRequest (AJAX) using
15 some timer.
16 * Date / clock widget, format it with a strftime()-like syntax.
17 Supports any locale forthe weekday and month names.
18 * Support embedded videos, automatically pausing and continueing them when it
19 skips to the next slide or looping them.
20 * A mechanism to poll some file for changes using some timer. When this data
21 changes the page is reloaded (forcing also a cache flush). This is useful for
22 remotely updating the layouts or scripts.
23 * Show a newsticker. This uses the JSON Feed format.
24 sfeed_json could be used to convert from RSS/Atom to this format. This data
25 could be updated using a cronjob.
26 * Nested/sub-slides in slides, swap out parts of a slide with some duration,
27 just like regular screenslides, #slide-ception.
28 * Progressbar to show the slides remaining duration.
29 * Hotkeys to skip slides, useful for debugging also.
30 * Uses vanilla JS with no dependencies on frameworks, etc.