aboutsummaryrefslogtreecommitdiffstats
path: root/playgrounds/transforms
diff options
context:
space:
mode:
authorSaivan <savian@me.com>2018-12-02 00:38:23 +1100
committerSaivan <savian@me.com>2018-12-02 00:38:23 +1100
commitd549b00dc9d593e121236c64ab7c8f986a0800ac (patch)
tree892b8a7bfbdde6116d04833c42abbc41ba84d34e /playgrounds/transforms
parent0a357dd3063bcb18ccf7de446f206e8598bea9a1 (diff)
downloadsvg.js-d549b00dc9d593e121236c64ab7c8f986a0800ac.tar.gz
svg.js-d549b00dc9d593e121236c64ab7c8f986a0800ac.zip
Implemented random colors and added back the playgrounds
This commit adds back the playgrounds and the npm demo. We also implemented a few methods to generate pretty random colors. Changes ======= - Added back the playgrounds and the npm demos - Implemented a few random color generators
Diffstat (limited to 'playgrounds/transforms')
-rw-r--r--playgrounds/transforms/index.html (renamed from playgrounds/transforms/transforms.html)0
-rw-r--r--playgrounds/transforms/style.css70
-rw-r--r--playgrounds/transforms/transforms.js1
3 files changed, 70 insertions, 1 deletions
diff --git a/playgrounds/transforms/transforms.html b/playgrounds/transforms/index.html
index a165dd9..a165dd9 100644
--- a/playgrounds/transforms/transforms.html
+++ b/playgrounds/transforms/index.html
diff --git a/playgrounds/transforms/style.css b/playgrounds/transforms/style.css
new file mode 100644
index 0000000..f327905
--- /dev/null
+++ b/playgrounds/transforms/style.css
@@ -0,0 +1,70 @@
+
+* {
+ box-sizing: border-box;
+}
+
+html {
+ background-color : #fefefe;
+}
+
+body {
+ margin: 0;
+ width: 100vw;
+ height: 99vh;
+ grid-gap: 30px;
+ display: inline-grid;
+ align-items: center;
+ grid-template-columns: 10vw 40vw auto 10vw;
+ grid-template-rows: 0 10vw auto 0;
+}
+
+h1 {
+ text-align: right;
+ border-right: solid 3px #f06;
+ padding-right: 12px;
+ color: #f06;
+ font-size: 52px;
+ font-family: Helvetica;
+ grid-row: 2;
+ grid-column: 2;
+ line-height: 1.8em;
+}
+
+p {
+ padding-right: 50px;
+ color: #444;
+ font-size: 18px;
+ font-family: Helvetica;
+ grid-row: 2;
+ grid-column: 3;
+}
+
+svg {
+ height: 100%;
+ width: 100%;
+ grid-row: 3;
+ grid-column: 2/4;
+ background-color: #f5f6f7;
+ border-radius: 20px;
+ border: #f065 1px solid;
+}
+
+.pink {
+ fill: #FF0066;
+}
+
+.green {
+ fill: #00ff99;
+}
+
+.dark-pink {
+ fill: #660029;
+}
+
+.light-pink {
+ fill: #FF99C2;
+}
+
+.off-white {
+ fill: #FFCCE0;
+}
diff --git a/playgrounds/transforms/transforms.js b/playgrounds/transforms/transforms.js
index 1918cd7..7b9722c 100644
--- a/playgrounds/transforms/transforms.js
+++ b/playgrounds/transforms/transforms.js
@@ -13,7 +13,6 @@ let a = canvas.rect(200, 400).move(200, 400)
.addClass('pink')
.transform({ px: 100, py: 500, origin: 'top-left' })
-debugger
a.animate()
.rotate({ rotate: 500, origin: 'top-right' })