Topic: 20 Liners - April 08 - Split Screen (Page 1 of 1) |
|
|---|---|
|
Nervous Wreck (II) Inmate From: Toronto |
posted 04-02-2008 19:39
I have the honor of picking this month's topic. It's "Split Screen". In 20 lines of JavaScript, display as many different effects as possible, in different boxes on the same screen. Some examples to illustrate what I mean (check the screen shots): |
|
Paranoid (IV) Inmate From: Norway |
posted 04-03-2008 09:09
Me likes. |
|
Paranoid (IV) Inmate From: Norway |
posted 04-27-2008 17:16
There goes a quickie. |
|
Paranoid (IV) Inmate From: cell 3736 |
posted 04-28-2008 01:08
wow ... great job! once again you have done the impossible ... simply amazing |
|
Paranoid (IV) Inmate From: Norway |
posted 04-28-2008 02:49
|
|
Paranoid (IV) Inmate From: Norway |
posted 04-28-2008 21:48
|
|
Bipolar (III) Inmate From: Cranleigh, Surrey, England |
posted 04-29-2008 15:43
sorry I've been absent far too much. Mountains of work. Taking an afternoon off after handing in a large project this afternoon. |
|
Paranoid (IV) Inmate From: cell 3736 |
posted 04-29-2008 16:09
403 Forbidden |
|
Paranoid (IV) Inmate From: Royal Horsing Ground |
posted 04-29-2008 16:52
Copy and paste the address in a new window |
|
Bipolar (III) Inmate From: Cranleigh, Surrey, England |
posted 04-29-2008 17:17
Ok, well, I'm not sure; this is actually hosted on a server argo kindly provided for me |
|
Obsessive-Compulsive (I) Inmate From: Germany |
posted 04-29-2008 22:52
poi quote:
|
|
Paranoid (IV) Inmate From: Norway |
posted 04-30-2008 12:57
wrayal: More/Nicer images and colors would improve the effects a lot. |
|
Nervous Wreck (II) Inmate From: Germany |
posted 04-30-2008 14:24
poi: Thank you! Glad you like my safari solution, I was quite relieved to finally see it working in the end |
|
Paranoid (IV) Inmate From: Norway |
posted 04-30-2008 22:32
It turns out that 8 lines got spared. |
|
Nervous Wreck (II) Inmate From: Toronto |
posted 05-01-2008 17:41
It's been such a hectic month for me that I've totally lost track of time (i.e. what day of the month it is). I thank poi for reminding me that it's already May (yet it's still 6 degrees Celsius here in Toronto!). I had high hopes that I would enter with a pure-DHTML attempt when I enthusiastically picked this month's topic. *sigh* |
|
Nervous Wreck (II) Inmate From: Toronto |
posted 05-01-2008 19:02
poi: code: "set,clearRect,save,translate,rotate,drawImage,scale,restore,fillRect,moveTo,lineTo,beginPath,closePath,stroke,fill,arc"
.split(",")
.forEach(
function (chainThat) {
CanvasRenderingContext2D.prototype[chainThat] = function(func) {
return function() {
return func.apply( this, arguments )||this;
};
}(CanvasRenderingContext2D.prototype[chainThat]);
});
|
|
Bipolar (III) Inmate From: Cranleigh, Surrey, England |
posted 05-01-2008 21:07
Cheers ^_^ And congratulations guys - some incredible canvas-fu going on there |
|
Paranoid (IV) Inmate From: Norway |
posted 05-05-2008 02:07
Thanks guys. |