Skip to content

Instantly share code, notes, and snippets.

View TabsPH's full-sized avatar

Alvin Cris Tabontabon TabsPH

View GitHub Profile
@TabsPH
TabsPH / Main.java
Created November 25, 2012 08:12
Simple Web Browser
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
/**
*
* @author Alvin Tabontabon
@TabsPH
TabsPH / Animator.java
Created January 18, 2013 23:21
JavaFX 2.2 Animator class
import javafx.animation.*;
import javafx.scene.*;
import javafx.util.*;
public class Animator {
protected void doInSequential(Animation... an) {
SequentialTransition st = SequentialTransitionBuilder.create()
.children(an)
.cycleCount(1)