Ejemplo de circulos con colores flat
A Pen by evilnapsis on CodePen.
| <?php | |
| class FormBuilder { | |
| private $forminstace; | |
| public $method; | |
| public $action; | |
| public $smtext; | |
| public function FormBuilder($form){ | |
| $this->forminstance = $form; | |
| } |
| var context = new webkitAudioContext(); | |
| var sinewave = context.createOscillator(); | |
| sinewave.connect(context.destination); | |
| sinewave.noteOn(0); // wait a moment before the next line | |
| sinewave.noteOff(0); |
| <?php | |
| class Database { | |
| public static $db; | |
| public static $con; | |
| function Database(){ | |
| $this->user="root";$this->pass="";$this->host="localhost";$this->ddbb="mydb"; | |
| } | |
| function connect(){ |
Ejemplo de circulos con colores flat
A Pen by evilnapsis on CodePen.
| /* | |
| * Clase para buscar numeros o caracteres repetidos dentro de un array | |
| * http://gist.github.com/evinapsis/6803632 | |
| */ | |
| import java.util.ArrayList; | |
| /** | |
| * @author evilnapsis | |
| */ | |
| public class SearchNum { |
| <!----- Este es el codigo CSS --- --> | |
| <style> | |
| .flex-video { | |
| position: relative; | |
| padding-top: 25px; | |
| padding-bottom: 67.5%; | |
| height: 0; | |
| margin-bottom: 16px; | |
| overflow: hidden; | |
| } |
probando las animaciones css3, intentando hacer un reloj ...
A Pen by Agustin Ramos on CodePen.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style type="text/css"> | |
| html, body { height: 100%; margin: 0; padding: 0; } | |
| #map { height: 100%; } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Google Maps API v3: Introduccion</h1> |
| <?php | |
| session_start(); | |
| if(isset($_GET["logout"])){ | |
| session_destroy(); | |
| } | |
| require_once 'google-api-php-client/src/Google/autoload.php'; | |
| $client = new Google_Client(); | |
| // Get your credentials from the console |
| <html> | |
| <head> | |
| <meta charset="utf8"/> | |
| <title>Page One</title> | |
| <link rel="stylesheet" type="text/css" href="dist/css/bootstrap.min.css"/> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |