Difference between revisions of "Widget:Logo"
m (new debug test) |
m (another attempt) |
||
| Line 49: | Line 49: | ||
var bufferContext; | var bufferContext; | ||
var hashParams = location.hash.split("#").slice(1); | var hashParams = location.hash.split("#").slice(1); | ||
| − | var debug = hashParams.indexOf("debug"); | + | var debug = ( hashParams.indexOf("debug") !== -1 ); |
//mw.config.set("debug", true) | //mw.config.set("debug", true) | ||
| Line 100: | Line 100: | ||
// Calculate the new position of the flake. | // Calculate the new position of the flake. | ||
// If it can't move anywhere down (3 positions): fixate it in the dynamic image and reset the flake | // If it can't move anywhere down (3 positions): fixate it in the dynamic image and reset the flake | ||
| − | if ( | + | if ( debug ? ( !updateFlakeCanvas( flake, bufferContext ) ) : ( !updateFlake( flake, dynamicImage ) ) ) |
{ | { | ||
// Fixate flake | // Fixate flake | ||
| − | if ( | + | if ( debug ) |
{ | { | ||
bufferContext.fillRect( flake.x, flake.y, 1, 1 ); | bufferContext.fillRect( flake.x, flake.y, 1, 1 ); | ||
| Line 124: | Line 124: | ||
// Draw the dynamic image | // Draw the dynamic image | ||
| − | if ( | + | if ( debug ) |
ctx.drawImage( bufferContext, 0, 0 ); | ctx.drawImage( bufferContext, 0, 0 ); | ||
else | else | ||
| Line 324: | Line 324: | ||
function window_load() | function window_load() | ||
{ | { | ||
| − | if ( debug | + | if ( debug ) |
{ | { | ||
console && console.log( "winter:", is_winter() ); | console && console.log( "winter:", is_winter() ); | ||
Revision as of 10:39, 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.