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
<!-- Modal Trigger --> | |
<a class="waves-effect waves-light btn modal-trigger" href="#modal1">View Intro Video</a> | |
<!-- Modal Structure --> | |
<div id="modal1" class="modal green-text"> | |
<div class="modal-content"> | |
<h4>Modal Header</h4> | |
<p><div class="video-container"> | |
<iframe width="1102" height="620" src="https://www.youtube.com/embed/VH26lrd6LSY?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe> | |
</div></p> |
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
//THREE.hx r68 | |
import js.html.*; | |
typedef HTMLElement = js.html.Element; | |
typedef HTMLCanvasElement = js.html.CanvasElement; | |
typedef HTMLImageElement = js.html.ImageElement; | |
typedef WebGLRenderingContext = js.html.webgl.RenderingContext; | |
/* Auto-generated using ts2hx */ | |
@:enum @:native("THREE.CullFace") abstract CullFace(Int) { |
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
#include <QtGui/QGuiApplication> | |
#include <QtQml/QQmlApplicationEngine> | |
#include <QtWebEngine/qtwebengineglobal.h> | |
int main(int argc, char *argv[]) | |
{ | |
QGuiApplication app(argc, argv); | |
QtWebEngine::initialize(); | |
QQmlApplicationEngine appEngine; | |
appEngine.load(QUrl("main.qml")); |