|
热门文章 |
|
|
|
相关文章 |
|
没有相关文章 |
|
|
radio背景颜色选择器 |
来源:源码爱好者 更新时间:2012/1/7 19:14:11 阅读次数: 我要投稿 |
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>radio颜色选择器</title> <body> <FORM METHOD="POST" NAME="bgcolor"> <font color="silver">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='silver'"><BR> <font color="lightslategray">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='lightslategray'"><BR> <font color="azure">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='azure'"><BR> <font color="lightgreen">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='lightgreen'"><BR> <font color="lightblue">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='lightblue'"><BR> <font color="white">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='white'"><BR> </form> </body> </html> |
特效说明: |
radio网页背景颜色选择器,只需点击对应颜色的radio单选框,就可以改变网页的背景颜色,简单方便,实用的javaScript网页特效。 |
|
上一篇文章: 表单内容提交等待效果下一篇文章: 点击按钮插入文字在文本框 |
|
|