Difference between revisions of "Widget:Logo"

From Hackerspace ACKspace
Jump to: navigation, search
m (whoops, forgot debug var)
(updated random color generator (brighter colors))
Line 189: Line 189:
 
         if( wheelPos < 85 )
 
         if( wheelPos < 85 )
 
         {
 
         {
             return [ (255 - wheelPos * 3), 0, (wheelPos * 3) ];
+
             return [ (255 - wheelPos * 2), 85, (85 + wheelPos * 2) ];
 
         }
 
         }
  
Line 195: Line 195:
 
         {
 
         {
 
             wheelPos -= 85;
 
             wheelPos -= 85;
             return [ 0, (wheelPos * 3), (255 - wheelPos * 3) ];
+
             return [ 85, (85 + wheelPos * 2), (255 - wheelPos * 2) ];
 
         }
 
         }
 
         wheelPos -= 170;
 
         wheelPos -= 170;
         return [ (wheelPos * 3), (255 - wheelPos * 3), 0 ];
+
         return [ (85 + wheelPos * 2), (255 - wheelPos * 2), 85 ];
 
     }
 
     }
  

Revision as of 17:51, 1 March 2016

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

  • 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.