Items Canvas

Component ID

2001864

Component name

Items Canvas

Component type

module

Maintenance status

Development status

Component security advisory coverage

covered

Downloads

670

Component created

Component changed

Component body

Display elements (list of elements) in an animated HTML5 canvas. This module is the light version of Tagcanvas. Unlike Tagcanvas Module no library required to run the animation of Items Canvas.

Do not forget to read the Master File README.txt for more information related to the installation.

EXAMPLE
==========================================

* HTML

  <ul>
    <li><a href="http://domain.com/foo1">foo1</a></li>
    <li><a href="http://domain.com/foo2">foo2</a></li>
    <li><a href="http://domain.com/foo3">foo3</a></li>
  </ul>

* With Items Canvas Module

  $items = array(
    0 => array(
            'url'  => 'http://domain.com/foo1',
            'name' => 'foo1',
          ),
    1 => array(
            'url'  => 'http://domain.com/foo2',
            'name' => 'foo2',
          ),
    2 => array(
            'url'  => 'http://domain.com/foo3',
            'name' => 'foo3',
          ),
  );

  print items_canvas_show($items);