码迷,mamicode.com
首页 > 其他好文 > 详细

PhotoShop 脚本学习05 设置PS前景色与背景色

时间:2020-02-03 16:02:43      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:dom   随机   span   col   color   conf   class   math   用户   

confirm可弹出窗口,让用户选择是还是否

//弹出窗口询问用户是否更改?
var answer = confirm ("您需要设置前景色和背景色吗?");

if(answer) 
{
    //设置前景色 ,分别设置三个通道
    app.foregroundColor.rgb.red = Math.random()*255;
    app.foregroundColor.rgb.green = Math.random()*255;
    app.foregroundColor.rgb.blue =  Math.random()*255;
    //设置背景色 ,分别设置三个通道
    app.backgroundColor.rgb.red = Math.random()*255;
    app.backgroundColor.rgb.green = Math.random()*255;
    app.backgroundColor.rgb.blue = Math.random()*255;
}

设置为RGB值为0-255随机值,即合成随机色

PhotoShop 脚本学习05 设置PS前景色与背景色

标签:dom   随机   span   col   color   conf   class   math   用户   

原文地址:https://www.cnblogs.com/52vsto/p/12255778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!