Difference between revisions of "Widget:Logo"
m (add clearRect) |
m (enabled clearRect) |
||
Line 126: | Line 126: | ||
// Clear the current frame | // Clear the current frame | ||
− | |||
// Draw the dynamic image | // Draw the dynamic image | ||
if ( debug ) | if ( debug ) | ||
+ | { | ||
+ | ctx.clearRect( 0, 0, width, height ) | ||
ctx.drawImage( buffer, 0, 0 ); | ctx.drawImage( buffer, 0, 0 ); | ||
+ | } | ||
else | else | ||
+ | { | ||
ctx.putImageData( dynamicImage, 0, 0 ); | ctx.putImageData( dynamicImage, 0, 0 ); | ||
+ | } | ||
// Draw all flakes | // Draw all flakes |
Revision as of 11:38, 15 January 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=https://ackspace.nl/w/images/e/e9/ACKsmass_logo.png |width=600px |height=200px |padding=8px |float=right }}
This will give the following result:
Note that image is mandatory, the rest is optional. Also, 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.