Skip to content

Instantly share code, notes, and snippets.

View adimancv's full-sized avatar
🏠
Working from home

Adiman Cipangwaren adimancv

🏠
Working from home
View GitHub Profile
@adimancv
adimancv / index.html
Last active March 2, 2018 02:21
canvas-shaky-point-grid
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Canvas Shaky Point Grid</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<style>
/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
body {
@adimancv
adimancv / jquery-3.3.1.js
Created March 2, 2018 03:21
jquery-3.3.1.js
(function (global, factory) {
"use strict";
if (typeof module === "object" && typeof module.exports === "object") {
// For CommonJS and CommonJS-like environments where a proper `window`
// is present, execute the factory and get jQuery.
// For environments that do not have a `window` with a `document`
// (such as Node.js), expose a factory as module.exports.
// This accentuates the need for the creation of a real `window`.
// e.g. var jQuery = require("jquery")(window);
// See ticket #14549 for more info.
@adimancv
adimancv / style.css
Created March 2, 2018 03:33
cdnforadimancvstylecsslogin
@import url(https://fonts.googleapis.com/css?family=Gudea:400,700);
body {
-webkit-perspective: 800px;
perspective: 800px;
height: 100vh;
margin: 0;
overflow: hidden;
font-family: 'Gudea', sans-serif;
background: #EA5C54;
background: linear-gradient(135deg, #EA5C54 0%, #bb6dec 100%);
@adimancv
adimancv / 52454.html
Last active March 2, 2018 10:24
Contoh css 245646
<html>
<head>
<title>Contoh Bentuk Inline</title>
</head>
<body bgcolor="#FFFFFF">
<p id="cth1">Ini adalah contoh tag P tanpadiformat menggunakan CSS</p>
<p id="cth2" style="font-size:20pt">Tag P ini diformat dengan besar font 20 point</p>
<p id="cth3" style="font-size:14pt; color:red">Tag P ini diformat dengan besar font 14 point, dan menggunakan warna merah</p>
@adimancv
adimancv / 4685768754.html
Created March 2, 2018 10:28
Contoh CSS 45458675435
<html>
<head>
<title>Contoh Bentuk Embedded</title>
</head>
<style>
body {background:#0000FF; color:#FFFF00; margin-left:0.5in}
h1 {font-size:18pt; color:#FF0000}
p {font-size:12pt; font-family:arial; text-indent:0.5in}
</style>
@adimancv
adimancv / 54654654546.html
Last active March 2, 2018 10:58
Contoh Berkas CSS
<html>
<head>
<style type="text/css">
body {
background-color: #d0e4fe;
}
h1 {
color: orange;
text-align: center;
@adimancv
adimancv / contoh-css.css
Last active March 2, 2018 11:02
contoh css
h1 {
text-align: center;
color: red;
}
h2 {
text-align: center;
color: red;
}
@adimancv
adimancv / 46875753557455.html
Created March 3, 2018 02:29
Contoh Penggunaan CSS Sederhana
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: lightblue;
}
h1 {
color: white;
@adimancv
adimancv / js-gambar-3d-dengan-js.js
Created March 5, 2018 08:41
gambar-3d-dengan-js
// -------------------------- utils -------------------------- //
var TAU = Math.PI * 2;
function extend( a, b ) {
for ( var prop in b ) {
a[ prop ] = b[ prop ];
}
return a;
}
@adimancv
adimancv / css-gambar-3d-dengan-js.css
Created March 5, 2018 08:44
gambar-3d-dengan-js
html { height: 100%; }
body {
min-height: 100%;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
background: #435;
color: white;