Changes to marquee

ffff:72.234.190.31
ffff:72.234.190.31
1 month ago
updated index.scroll
index.scroll
Changed around line 2: scrollMarqueeParser
+ atoms cueAtom
+ catchAllAtomType stringAtom
ffff:72.234.190.31
ffff:72.234.190.31
1 month ago
updated index.scroll
index.scroll
Changed around line 1
- scrollParqueeParser
+ scrollMarqueeParser
ffff:72.234.190.31
ffff:72.234.190.31
1 month ago
updated index.scroll
index.scroll
Changed around line 1
- cue marquee
+ cue marquee
ffff:72.234.190.31
ffff:72.234.190.31
1 month ago
updated index.scroll
index.scroll
Changed around line 1
- marqueeParser
+ scrollParqueeParser
ffff:72.234.190.31
ffff:72.234.190.31
1 month ago
updated index.scroll
index.scroll
Changed around line 3: marqueeParser
+ defaultTag = "marquee"
ffff:72.234.190.31
ffff:72.234.190.31
1 month ago
updated index.scroll
index.scroll
Changed around line 3: marqueeParser
- 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 `
-
- ${text}
-
`
- }
- tag = "div"
- defaultClassName = "scrollMarquee"
+ tag = "marquee"
ffff:72.234.190.31
ffff:72.234.190.31
1 month ago
updated index.scroll
index.scroll
Changed around line 25: marqueeParser
-
ffff:72.234.190.31
ffff:72.234.190.31
1 month ago
updated index.scroll
index.scroll
Changed around line 1
- extends paragraphParser
+ extends scrollParagraphParser
ffff:72.234.190.31
ffff:72.234.190.31
1 month ago
updated index.scroll
index.scroll
Changed around line 1
- 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
+ return `
+
+ ${text}
+
`
+ }
+ tag = "div"
+ defaultClassName = "scrollMarquee"
root
root
2 months ago
initial blank_template template
.gitignore
Changed around line 1
+ .DS_Store
+ *.html
+ *.txt
+ *.xml
+ *.css
+ *.js
+ *.csv
+ requests.scroll
index.scroll
Changed around line 1
+ buildHtml
+ theme roboto
+
+ Hello World my name is