simple_js_Obj
weblog 07:14 | 14-05-2012
(function () {"use strict"; //use strict wrapper
var Primer = function(something){ //constructor
this.obj_input_primer = {aL: somethin.bar, aP: something.bar1};
this.someVar_primer = {}, this.someVar_primer = something || "lala";
};//end_Primer_constructor
Primer.prototype = {
method_2: function (event, lk) {}, //end_method_2
method_1: function (rel) {
this.imputIdString = rel;
var foo1 = function(scope) {
var that = scope, i = 0, lk = that.sArray.length;
for(i;i<lk;i++) { // or a for in {loop}
if ( that.sArray[i].a_id === that.imputIdString ) {
that.someVar_primer.tee = that.obj_input_primer[i].bar;
}
}that.method_2();};
var foo2 = function () { };
this.obj_input_primer.aL === 'testString' ? foo1(this) : foo2(this);
}//end_method_1
}; // end Primer.prototype
// var kl = new Primer(something);
}());// end_wrapper_"use strict"
CSS3(@keyframes)
weblog 07:14 | 14-05-2012
@keyframes mymove{
from {top:0px;}
to {top:200px;}
}
@-moz-keyframes mymove /* Firefox */{
from {top:0px;}
to {top:200px;}
}
@-webkit-keyframes mymove /* Safari and Chrome */{
from {top:0px;}
to {top:200px;}
}
Chrome Frame
weblog 14:00 | 13-05-2012
Google Chrome Frame && IE6 ;)
<meta http-equiv="X-UA-Compatible" content="chrome=1">
jsSniff(@media)
weblog 23:07 | 11-05-2012
if(window.devicePixelRatio == 1 && navigator.userAgent.match(/iPad/) == null) {}
if(window.devicePixelRatio == 2 && navigator.userAgent.match(/(iPad)/) == null){}
if(navigator.userAgent.match(/(iPad)/)){}
CSS(@media)
weblog 23:00 | 11-05-2012
@media only screen and (max-device-width: 480px){}
@media only screen and (min-width:481px) and (max-width:768px){}
@media all and (orientation:landscape) {}
@media all and (orientation:portrait) {}
@media all and (min-device-pixel-ratio: 1) {}
@media only screen and (-moz-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {}
cssClassFloatFix::getHeight()
weblog 18:15 | 10-05-2012
.cssClassFloatFix:before,
.cssClassFloatFix:after{
content:"\0020";
display: block;
height:0;
overflow:hidden;
}
.cssClassFloatFix{
zoom:1;
}
.cssClassFloatFix:after{
clear: both;
}
pixel-ratio:2 | css(background-image)
weblog 08:15 | 07-05-2012background-image: url(img/2.png); background-size: cover;
CSS3 Animation
weblog 07:15 | 07-05-2012document . querySelector('script[title=senchaAnim_CSS3_animation]')
workingOnRefresh == .
weblog 17:25 | 16-10-2011Some fresh code.... Most of the new code is still a pure mess, I'll make it fast and shiny after it "works". And no, you are clicking placeHolder - Buttons :P, no pixelMagic yet.
Hello world!
weblog 19:00 | 19-08-2011
enyo_cheatS1
weblog 00:45 | 21-4-2011
+) index :: <script><script/> /* emulator path! */
1) <head>< src="../enyo/0.9/framework/enyo.js"
></head>
+) webApp 2 emulator :: win_cmd
1) cmd> ../AppFolder/myApp/cd..
/*=> ../AppFolder/ */
2) cmd> palm-package myApp
3) cmd> palm-install com.palm.myapp_1.0.0_all.ipk
<!-- all hidden here -->