Hypnotic effect with Rahael

Wednesday, June 30, 2010

Filed under: HTML and CSS, javascript — Tags: , , , , — Dmitri @ 15:49

Open fullscreen

Notify bar

Wednesday, May 27, 2009

Filed under: PHP, jQuery, javascript, web-development — Tags: , , , — Dmitri @ 12:11

‘Notify Bar’ plugin

Simple plugin (basically it’s not a plugin, but widget) to show notify bar
(like on Twitter’s webpage).
It’s very simple to use:

      
$(function () {
  $.notifyBar({
    html: "Thank you, your settings were updated!",
    delay: 2000,
    animationSpeed: "normal"
  });
});
      
    

and to your html page stylesheet:

<link rel="stylesheet" href="jquery.notifyBar.css" type="text/css" media="screen"  />

$.notifyBar can pass next parameters:

Parameter Description Type Default
html What text will be inside bar, can be HTML String [optional] “Your message here”
delay How long bar will be delayed, doesn’t count animation time. Integer [optional] 2000
animationSpeed How long this bar will be slided up and down String | Integer [optional] “normal”
jqObject Own jquery object for notify bar jQuery object [optional] null
cls You can set own CSS class for ‘Notify bar’. There is too premade clasess “error” and “success” String
close If set to true close button will be displayed Boolean false

See demonstration or download source.

Horizontal arcade shooter in JavaScript

Wednesday, October 22, 2008

Filed under: web-development — Tags: , , — Dmitri @ 12:30

I am always interested in games with JavaScript. I made an experiment — wrote the arcade shooter in JavaScript.

I’m not a game programmer, but anyway JavaScript seems to be quite slow for games. So you can check this space arcade shooter. It still contains a lot of bugs (especially in IE7) and can hang up your browser, so beware.

Space shooter in JavaScript
Space shooter screenshot

I do not support IE6 or earlier in my projects anymore.

© 2008 Dmitri Smirnov