├── .DS_Store ├── README.md ├── fonts.css ├── fonts ├── icomoon.eot ├── icomoon.svg ├── icomoon.ttf └── icomoon.woff ├── image └── 1.ico ├── index.html ├── js ├── .DS_Store ├── dat.gui.min.js ├── gif.js ├── gif.worker.js ├── p5.dom.min.js ├── p5.min.js └── sketch.js └── logo.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyasai/TheMatrix/5d155cbf65c6e94df9c19e7543e0f89a1ffb3a37/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TheMatrix -------------------------------------------------------------------------------- /fonts.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'icomoon'; 3 | src: url('fonts/icomoon.eot?odez19'); 4 | src: url('fonts/icomoon.eot?odez19#iefix') format('embedded-opentype'), 5 | url('fonts/icomoon.ttf?odez19') format('truetype'), 6 | url('fonts/icomoon.woff?odez19') format('woff'), 7 | url('fonts/icomoon.svg?odez19#icomoon') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | 12 | [class^="icon-"], [class*=" icon-"] { 13 | /* use !important to prevent issues with browser extensions that change fonts */ 14 | font-family: 'icomoon' !important; 15 | speak: none; 16 | font-style: normal; 17 | font-weight: normal; 18 | font-variant: normal; 19 | text-transform: none; 20 | line-height: 1; 21 | 22 | /* Enable Ligatures ================ */ 23 | letter-spacing: 0; 24 | -webkit-font-feature-settings: "liga"; 25 | -moz-font-feature-settings: "liga=1"; 26 | -moz-font-feature-settings: "liga"; 27 | -ms-font-feature-settings: "liga" 1; 28 | font-feature-settings: "liga"; 29 | -webkit-font-variant-ligatures: discretionary-ligatures; 30 | font-variant-ligatures: discretionary-ligatures; 31 | 32 | /* Better Font Rendering =========== */ 33 | -webkit-font-smoothing: antialiased; 34 | -moz-osx-font-smoothing: grayscale; 35 | } 36 | 37 | .iconlink{ 38 | text-align: right; 39 | line-height: 140px; 40 | /*margin-top: 100px;*/ 41 | font-size: 30pt; 42 | } 43 | 44 | 45 | a:link{ 46 | color:#FFFFFF; 47 | text-decoration:none; 48 | } 49 | 50 | a:visited{ 51 | color:#FFFFFF; 52 | text-decoration:none; 53 | } 54 | 55 | a:hover{ 56 | color:#aab91f; 57 | text-decoration: none; 58 | } 59 | 60 | a:active { 61 | color:#FFFFFF; 62 | text-decoration:none; 63 | } 64 | 65 | .me{ 66 | color:#FF458C; 67 | } 68 | 69 | 70 | .icon-zhihu2:before { 71 | content: "\e908"; 72 | } 73 | .icon-behance:before { 74 | content: "\e900"; 75 | } 76 | .icon-dribble:before { 77 | content: "\e901"; 78 | } 79 | .icon-github:before { 80 | content: "\e902"; 81 | } 82 | .icon-instagram:before { 83 | content: "\e903"; 84 | } 85 | .icon-tumblr:before { 86 | content: "\e904"; 87 | } 88 | .icon-twitter:before { 89 | content: "\e905"; 90 | } 91 | .icon-weibo:before { 92 | content: "\e906"; 93 | } 94 | .icon-zhihu:before { 95 | content: "\e907"; 96 | } 97 | .icon-music:before { 98 | content: "\1f4a1"; 99 | } 100 | .icon-book:before { 101 | content: "\e91f"; 102 | } 103 | .icon-price-tag:before { 104 | content: "\e935"; 105 | } 106 | .icon-barcode:before { 107 | content: "\e937"; 108 | } 109 | .icon-qrcode:before { 110 | content: "\e938"; 111 | } 112 | .icon-location:before { 113 | content: "\e947"; 114 | } 115 | .icon-quotes-left:before { 116 | content: "\e977"; 117 | } 118 | .icon-quotes-right:before { 119 | content: "\e978"; 120 | } 121 | .icon-pie-chart:before { 122 | content: "\e99a"; 123 | } 124 | .icon-stats-dots:before { 125 | content: "\e99b"; 126 | } 127 | .icon-stats-bars:before { 128 | content: "\e99c"; 129 | } 130 | .icon-accessibility:before { 131 | content: "\e9b2"; 132 | } 133 | .icon-eye:before { 134 | content: "\e9ce"; 135 | } 136 | .icon-bookmarks:before { 137 | content: "\e9d3"; 138 | } 139 | .icon-sun:before { 140 | content: "\e9d4"; 141 | } 142 | .icon-star-full:before { 143 | content: "\e9d9"; 144 | } 145 | .icon-heart:before { 146 | content: "\e9da"; 147 | } 148 | .icon-tongue:before { 149 | content: "\e9e3"; 150 | } 151 | .icon-point-up:before { 152 | content: "\ea03"; 153 | } 154 | .icon-point-right:before { 155 | content: "\ea04"; 156 | } 157 | .icon-point-down:before { 158 | content: "\ea05"; 159 | } 160 | .icon-point-left:before { 161 | content: "\ea06"; 162 | } 163 | .icon-share2:before { 164 | content: "\ea82"; 165 | } 166 | .icon-instagram2:before { 167 | content: "\ea92"; 168 | } 169 | .icon-twitter2:before { 170 | content: "\ea96"; 171 | } 172 | .icon-sina-weibo:before { 173 | content: "\ea9a"; 174 | } 175 | .icon-dribbble:before { 176 | content: "\eaa7"; 177 | } 178 | .icon-behance2:before { 179 | content: "\eaa8"; 180 | } 181 | .icon-github2:before { 182 | content: "\eab0"; 183 | } 184 | .icon-tumblr2:before { 185 | content: "\eab9"; 186 | } 187 | .icon-pinterest:before { 188 | content: "\ead1"; 189 | } 190 | -------------------------------------------------------------------------------- /fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyasai/TheMatrix/5d155cbf65c6e94df9c19e7543e0f89a1ffb3a37/fonts/icomoon.eot -------------------------------------------------------------------------------- /fonts/icomoon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyasai/TheMatrix/5d155cbf65c6e94df9c19e7543e0f89a1ffb3a37/fonts/icomoon.ttf -------------------------------------------------------------------------------- /fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyasai/TheMatrix/5d155cbf65c6e94df9c19e7543e0f89a1ffb3a37/fonts/icomoon.woff -------------------------------------------------------------------------------- /image/1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyasai/TheMatrix/5d155cbf65c6e94df9c19e7543e0f89a1ffb3a37/image/1.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |GUI
's constructor: localStorage
on exit. localStorage
will override those passed to dat.GUI
's constructor. This makes it easier to work incrementally, but localStorage
is fragile, and your friends may not see the same values you do.