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
import Foundation | |
import RxSwift | |
import RxCocoa | |
// NOTE | |
// 参考実装 | |
// https://www.swiftbysundell.com/articles/property-wrappers-in-swift/ | |
// | |
// Exclusively Enforcement問題 | |
// (購読の仕方によって wrappedValue.setter 内で getter が呼ばれるケースがある) |
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="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>HTML Canvas Animation</title> | |
<script src="canvas_animation.js"></script> | |
<style type="text/css"> | |
canvas { border: 1px solid black; } |