Skip to content

Instantly share code, notes, and snippets.

View A-Babin's full-sized avatar

Andrew Babin A-Babin

View GitHub Profile
@A-Babin
A-Babin / fadeout.dart
Last active August 27, 2018 05:27
Dart animation forwards fill mode
import 'dart:html';
void main() {
var el = Element.div();
el.style.backgroundColor = "#881003";
el.text = "HELLO WORLD";
el.style.width = "400px";
el.style.height = "400px";
document.body.append(el);