------------------------------------------------------------
commit 1e69977f444f72e9ec1f4e514ee393795d6367a1
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Sat Nov 30 22:03:19 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index d94c902..edc53a6 100644
--- a/index.scroll
+++ b/index.scroll
@@ -2,6 +2,8 @@ scrollMarqueeParser
description A scrolling marquee text effect.
extends scrollParagraphParser
cue marquee
+ atoms cueAtom
+ catchAllAtomType stringAtom
javascript
defaultTag = "marquee"
tag = "marquee"
\ No newline at end of file
------------------------------------------------------------
commit 4dc66c785283ddfda79f35bfd25220d5d6f5f8b9
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Sat Nov 30 22:02:51 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index 16065ac..d94c902 100644
--- a/index.scroll
+++ b/index.scroll
@@ -1,4 +1,4 @@
-scrollParqueeParser
+scrollMarqueeParser
description A scrolling marquee text effect.
extends scrollParagraphParser
cue marquee
------------------------------------------------------------
commit 5330def5649968db3be373cbaebd6ea43bc98d6d
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Sat Nov 30 22:02:47 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index 347a446..16065ac 100644
--- a/index.scroll
+++ b/index.scroll
@@ -1,7 +1,7 @@
scrollParqueeParser
description A scrolling marquee text effect.
extends scrollParagraphParser
- cue marquee
+ cue marquee
javascript
defaultTag = "marquee"
tag = "marquee"
\ No newline at end of file
------------------------------------------------------------
commit d018cf32c7a5d4419ed2da9a1b68d210579f1555
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Sat Nov 30 20:10:00 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index 353118d..347a446 100644
--- a/index.scroll
+++ b/index.scroll
@@ -1,4 +1,4 @@
-marqueeParser
+scrollParqueeParser
description A scrolling marquee text effect.
extends scrollParagraphParser
cue marquee
------------------------------------------------------------
commit f05d8b1b63cc5644716fdf65f261b2c6ada0a2c8
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Sat Nov 30 20:09:20 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index d32b7bd..353118d 100644
--- a/index.scroll
+++ b/index.scroll
@@ -3,4 +3,5 @@ marqueeParser
extends scrollParagraphParser
cue marquee
javascript
+ defaultTag = "marquee"
tag = "marquee"
\ No newline at end of file
------------------------------------------------------------
commit 0d79a3bc1c0e4177886b158019d28f8519354d55
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Sat Nov 30 20:08:48 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index b358f80..d32b7bd 100644
--- a/index.scroll
+++ b/index.scroll
@@ -3,32 +3,4 @@ marqueeParser
extends scrollParagraphParser
cue marquee
javascript
- buildHtml() {
- const id = this._getUid()
- const text = this.content || ""
- const styles = `
- @keyframes scroll-left {
- 0% { transform: translateX(100%); }
- 100% { transform: translateX(-100%); }
- }
- .scrollMarquee${id} {
- overflow: hidden;
- padding: 1rem;
- background: #f9fafb;
- border-radius: 0.5rem;
- margin: 1rem 0;
- }
- .scrollMarquee${id} span {
- display: inline-block;
- white-space: nowrap;
- animation: scroll-left 15s linear infinite;
- font-weight: 600;
- color: #2563eb;
- }`
- return `<style>${styles}</style>
- <div class="scrollMarquee${id}">
- <span>${text}</span>
- </div>`
- }
- tag = "div"
- defaultClassName = "scrollMarquee"
\ No newline at end of file
+ tag = "marquee"
\ No newline at end of file
------------------------------------------------------------
commit 1ee632a807b1f6bb7c0e84177f1bbd87afebac16
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Sat Nov 30 20:07:29 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index af0f492..b358f80 100644
--- a/index.scroll
+++ b/index.scroll
@@ -25,7 +25,6 @@ marqueeParser
font-weight: 600;
color: #2563eb;
}`
-
return `<style>${styles}</style>
<div class="scrollMarquee${id}">
<span>${text}</span>
------------------------------------------------------------
commit 75942deba852ec74ce7f9fc35330688426628400
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Sat Nov 30 19:58:05 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index 96242d0..af0f492 100644
--- a/index.scroll
+++ b/index.scroll
@@ -1,6 +1,6 @@
marqueeParser
description A scrolling marquee text effect.
- extends paragraphParser
+ extends scrollParagraphParser
cue marquee
javascript
buildHtml() {
------------------------------------------------------------
commit d890c42a0bd138bbe5b47daf6f1f35d5dc49b6ad
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Sat Nov 30 19:57:22 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index 4442ed6..96242d0 100644
--- a/index.scroll
+++ b/index.scroll
@@ -1,4 +1,35 @@
-buildHtml
-theme roboto
+marqueeParser
+ description A scrolling marquee text effect.
+ extends paragraphParser
+ cue marquee
+ javascript
+ buildHtml() {
+ const id = this._getUid()
+ const text = this.content || ""
+ const styles = `
+ @keyframes scroll-left {
+ 0% { transform: translateX(100%); }
+ 100% { transform: translateX(-100%); }
+ }
+ .scrollMarquee${id} {
+ overflow: hidden;
+ padding: 1rem;
+ background: #f9fafb;
+ border-radius: 0.5rem;
+ margin: 1rem 0;
+ }
+ .scrollMarquee${id} span {
+ display: inline-block;
+ white-space: nowrap;
+ animation: scroll-left 15s linear infinite;
+ font-weight: 600;
+ color: #2563eb;
+ }`
-Hello World my name is
\ No newline at end of file
+ return `<style>${styles}</style>
+ <div class="scrollMarquee${id}">
+ <span>${text}</span>
+ </div>`
+ }
+ tag = "div"
+ defaultClassName = "scrollMarquee"
\ No newline at end of file
------------------------------------------------------------
commit 93e43037b7794c5d3de89eaf6afe3e3d561d8df3
Author: root <root@hub.scroll.pub>
Date: Sun Nov 10 20:12:15 2024 +0000
initial blank_template template
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bd1a52d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+.DS_Store
+*.html
+*.txt
+*.xml
+*.css
+*.js
+*.csv
+requests.scroll
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..4442ed6
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,4 @@
+buildHtml
+theme roboto
+
+Hello World my name is
\ No newline at end of file