Difference between revisions of "Widget:Logo"

From Hackerspace ACKspace
Jump to: navigation, search
m (found that annoying bug and fixed it)
m (testing flake collision avoidance (might fail mid-air))
Line 277: Line 277:
 
         if ( ( _flake.x + _x ) >= width )
 
         if ( ( _flake.x + _x ) >= width )
 
             return null;
 
             return null;
 +
 +
        if ( debug )
 +
        {
 +
            // Make sure we're not colliding with other flakes
 +
            for ( var nFlake = 0; nFlake < snowFlakes.length; ++nFlake )
 +
            {
 +
                var f = snowFlakes[ nFlake ];
 +
                if ( f.x === _x && f.y === _y )
 +
                    return null;
 +
            }
 +
        }
  
 
         var newFlake = { x: _flake.x + _x, y: _flake.y + _y, c: _flake.c };
 
         var newFlake = { x: _flake.x + _x, y: _flake.y + _y, c: _flake.c };

Revision as of 10:37, 18 December 2017

This widget creates an animated themed ACKspace logo.

Created by xopr

Using this widget

To insert this widget, use the following code:

{{#widget:Logo
|image=/w/images/e/e9/ACKsmass_logo.png
|width=600px
|height=200px
|padding=8px
|float=right
}}

This will give the following result:

Notes

  • it will display snow in December - March and will show Christmas lights between 7 December and 7 January
  • image is mandatory, the rest is optional.
    it also must be written without protocol since colon (:) is not allowed, and may be relative, for example: //ackspace.nl/w/images/e/e9/ACKsmass_logo.png or /w/images/e/e9/ACKsmass_logo.png
  • You must provide a unit for the sizes (i.e. px, %, etc.)

Copy to your site

To use this widget on your site, just install MediaWiki Widgets extension and copy full source code of this page to your wiki as Widget:Logo article.