Made that project for an educational websites, I used 3 kinds of Animation in it, SMIL animation for the page flips, SnapSVG to animate the book opening and the amazing GSAP for the rest of animations :) I hope you like my first SVG animation, definitely not the last.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'xcodeproj' | |
name = 'test_copy' | |
proj = Xcodeproj::Project.open('test.xcodeproj') | |
src_target = proj.targets.find { |item| item.to_s == 'test' } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Laravel PHP Framework</title> | |
<style> | |
@import url(//fonts.googleapis.com/css?family=Lato:700); | |
body { | |
margin:0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace App\Http\Controllers; | |
use App\Http\Requests; | |
use App\Http\Controllers\Controller; | |
use App\Http\Requests\ContactFormRequest; | |
use App\Events\ContactFormValid; | |
class ContactController extends Controller { | |
public function getIndex() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL dump 10.13 Distrib 5.6.21-69.0, for debian-linux-gnu (x86_64) | |
-- | |
-- Host: localhost Database: employees | |
-- ------------------------------------------------------ | |
-- Server version 5.6.21-69.0 | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var video = document.getElementById('video'), | |
info = document.getElementById('info'), | |
fraction = 0.8; | |
function checkScroll() { | |
var x = video.offsetLeft, | |
y = video.offsetTop, | |
w = video.offsetWidth, | |
h = video.offsetHeight, | |
r = x + w, //right |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 3.3.8 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Host: localhost | |
-- Generation Time: Dec 13, 2010 at 10:02 AM | |
-- Server version: 5.1.41 | |
-- PHP Version: 5.3.2-1ubuntu4.5 | |
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |