Changes to webcamtest

ffff:72.234.190.31
ffff:72.234.190.31
2 months ago
Updated claude.parsers
claude.parsers
Changed around line 35: webCamParser
-
Changed around line 54: webCamParser
-
Changed around line 66: webCamParser
-
Changed around line 74: webCamParser
-
-
ffff:72.234.190.31
ffff:72.234.190.31
2 months ago
Updated index.scroll
index.scroll
Changed around line 1
+
- Hello World my name is
+ claude.parsers
+
+ webCam
ffff:72.234.190.31
ffff:72.234.190.31
2 months ago
Updated claude.parsers
claude.parsers
Changed around line 1
+ webCamParser
+ extends abstractScrollWithRequirementsParser
+ description Access the device webcam with optional controls for capturing images.
+ cueFromId
+ inScope widthParser heightParser
+ javascript
+ compileInstance() {
+ const id = "webcam" + this._getUid()
+ const width = this.get("width") || "640"
+ const height = this.get("height") || "480"
+ const containerStyle = `
+ .webcamContainer {
+ position: relative;
+ width: ${width}px;
+ margin: 20px auto;
+ }
+ .webcamControls {
+ margin-top: 10px;
+ text-align: center;
+ }
+ .webcamButton {
+ background: #0066cc;
+ color: white;
+ border: none;
+ padding: 8px 16px;
+ border-radius: 4px;
+ margin: 0 5px;
+ cursor: pointer;
+ }
+ .webcamButton:hover {
+ background: #0052a3;
+ }
+ .capturedImage {
+ display: none;
+ margin-top: 10px;
+ }
+ `
+
+ return `
+ ${containerStyle}
+
+
+
+
+
+
+
+
+
+
+ `
+ }
ffff:72.234.190.31
ffff:72.234.190.31
2 months ago
Updated claude.parsers
claude.parsers
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