Skip to content

Instantly share code, notes, and snippets.

@volqii
volqii / canvas.css
Created March 5, 2015 18:01
Tam sayfa canvas
html, body {
width: 100%;
height: 100%;
margin: 0px;
overflow:hidden;
}
body {
background-image: url("/gradient.jpg");
background-size:cover
@volqii
volqii / gist:7986805
Created December 16, 2013 13:19
JQUERY:Post
$.post( "test.php", { name: "John", time: "2pm" })
.done(function( data ) {
alert( "Data Loaded: " + data );
});
@volqii
volqii / gist:7936526
Created December 12, 2013 22:14
JAVASCRIPT:random_number
function rastgele (x,y) {
/*x ten y'ye kadar rastgele sayı ver*/
return ~~(Math.random() * y) + x;
}
@volqii
volqii / gist:7930668
Created December 12, 2013 16:17
JAVASCRIPT:function_with_default_value
function foo(a, b)
{
a = typeof a !== 'undefined' ? a : 42;
b = typeof b !== 'undefined' ? b : 'default_b';
}