使用 Javascript 访问 webkit-gradient 属性
我正在尝试使用 Javascript 更改 DIV 部分的 webkit-gradient 属性。用户输入两种颜色作为渐变。然后,当用户单击按钮时,我希望 DIV 部分的背景显示用户选择的两种颜色的渐变。
谢谢
比努
I am trying to change the webkit-gradient property of a DIV section using Javascript. The user enters two colors for the gradient. Then when the user clicks a button, I want a DIV section to have a background showing the gradient with the two colors the user selected.
Thanks
Binu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您知道如何将渐变“控制”字符串放在一起,则只需将渐变表达式设置为元素“样式”上的“backgroundImage”值即可。
当然,“无论如何”部分有点复杂;也许你想要这样的东西:
我刚刚制作的线端点;您具体使用什么取决于您想要渐变的外观,您可能应该自己尝试一下。 这是一个 jsfiddle。 (使用 jQuery,但只是勉强使用)。
If you know how to put the gradient "control" strings together, you simply set the gradient expression up as the value of "backgroundImage" on the element's "style".
Of course the "whatever" part is a little complicated; probably you'd want something like:
The line endpoints I just made up; exactly what you'd use depends on exactly how you want the gradient to look, and you should probably play with that yourself. Here's a jsfiddle. (uses jQuery but just barely).
工作示例在这里: http://jsfiddle.net/ezmilhouse/4gbAW/
梯度计算可能会变得非常大,请查看 http://gradients.glrzad.com/ 寻找灵感。
你的html:
你的js:
working sample here: http://jsfiddle.net/ezmilhouse/4gbAW/
gradient calculations can become really big, check out http://gradients.glrzad.com/ for your inspiration.
your html:
your js: