You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This plugin is useless for modern testing needs, because it does not render any CSS that uses JavaScript variables.
I am designing a page that uses a script tag at the end of the page to apply some visual effects. The javascript populates variables that are used in the CSS of the file. The CSS is in a separate file.
This seems like a pretty big gap in the implementation.
.static-gradient {
background:radial-gradient(circle at bottom, transparent,90%,rgba(0,0,0,0.5)),/* Dark region at the top */radial-gradient(circle,#f1f1f1,#05ab75),
aliceblue;
}
Also, interesting to note, your preview throws in an entire extra amount of space at the end of the page, defeating the ability to test at different page lengths:
The text was updated successfully, but these errors were encountered:
This plugin is useless for modern testing needs, because it does not render any CSS that uses JavaScript variables.
I am designing a page that uses a script tag at the end of the page to apply some visual effects. The javascript populates variables that are used in the CSS of the file. The CSS is in a separate file.
This seems like a pretty big gap in the implementation.
Your plugin's Preview:

The real page:
The color changes as I move the mouse around.
The example javascript:
The example CSS using the javascript variables:
An example HTML, so you can test this out yourself:
Add this CSS for the static-gradient:
Also, interesting to note, your preview throws in an entire extra amount of space at the end of the page, defeating the ability to test at different page lengths:
The text was updated successfully, but these errors were encountered: