- https://spaces.archilogic.com/model/archilogic/jcmas0yd
- https://spaces.archilogic.com/model/archilogic/eyvysn1f
- https://spaces.archilogic.com/model/archilogic/dfuby4qs
- https://spaces.archilogic.com/model/archilogic/z5imrud7
- https://spaces.archilogic.com/model/archilogic/zllcl4hg
- https://spaces.archilogic.com/model/archilogic/3wnvqhdh
- https://spaces.archilogic.com/model/archilogic/qkepw87a
- https://spaces.archilogic.com/model/archilogic/mg5ector
- https://spaces.archilogic.com/model/archilogic/ykn0znz5
- https://spaces.archilogic.com/model/archilogic/y7cujafa
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> | |
<head> | |
<script src="https://aframe.io/releases/0.7.0/aframe.min.js"></script> | |
<script src="https://dist.3d.io/3dio-js/1.x.x/3dio.min.js"></script> | |
</head> | |
<body> | |
<a-scene> | |
<a-entity position="0 0 -2" io3d-data3d="url:untitled.gz.data3d.buffer"></a-entity> | |
</a-scene> |
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 ffmpeg = require('ffmpeg.js/ffmpeg-mp4.js') | |
document.querySelector('button').addEventListener('click', (evt) => { | |
document.querySelector('[camera]').setAttribute('animation', { | |
property: 'rotation', | |
to: '0 360 0', | |
dur: 10000, | |
easing: 'linear' | |
}) |
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> | |
<body> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/86/three.min.js"></script> | |
<script src="https://cdn.rawgit.com/mrdoob/three.js/r86/examples/js/loaders/GLTF2Loader.js"></script> | |
<script> | |
var renderer = new THREE.WebGLRenderer() | |
renderer.setSize(500, 500) | |
renderer.setClearColor(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
<script> | |
class MyThing extends HTMLElement { | |
constructor() { super() } | |
connectedCallback() { | |
this.textContent += 'World' | |
} | |
} | |
</script> | |
<my-thing>Hello</my-thing> |
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> | |
<body> | |
<div id="target"></div> | |
<template> | |
<ul> | |
<li><a>Item #0</a></li> | |
<li><a>Item #1</a></li> | |
<li><a>Item #2</a></li> | |
<li><a>Item #3</a></li> |
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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
</head> | |
<body> | |
<template id="weather-info"> | |
<style> | |
:host { |
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> | |
<body> | |
<template id="name-tag"> | |
<style> | |
div.container { | |
background: red; | |
padding: 0.5em; | |
border-radius: 1em; | |
width: 300px; |
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
DEFAULT="[0m" #"[37;40m" | |
PINK="[35m" | |
GREEN="[32m" | |
ORANGE="[33m" | |
scm_branch() { | |
HG_BRANCH=`hg branch 2> /dev/null` | |
GIT_BRANCH=`git rev-parse --abbrev-ref HEAD 2> /dev/null` | |
if [ -n "$HG_BRANCH" ]; then |