2015.08.11-背景颜色切换函数_html/css_WEB-ITnose
程序员文章站
2022-05-09 22:42:23
...
简单的demo,点击切换背景颜色切换,附上代码。
.html文件
class='red' id="box">美美哒!...........
.css文件
.red{ width:100px; height:100px; background-color:red; border-radius:0 70px 0 60px ; transition-duration:1s;}.yellow{ width:150px; height:150px; border-radius:80px 0 100px 0; transition-duration:1s; background-color:yellow;}
.js文件
window.onload = function(){ var box = document.getElementById('box'); box.onclick = toYellow;};function toRed(){ this.className ='red'; this.onclick = toYellow;}function toYellow(){ this.className ='yellow'; this.onclick = toRed;}
上一篇: PS制作超棒的女生素描效果
推荐阅读
-
使用Html+Css实现简易导航栏功能(导航栏遇到鼠标切换背景颜色)
-
CSS 背景颜色_html/css_WEB-ITnose
-
Sass函数颜色函数RGB颜色函数_html/css_WEB-ITnose
-
如何切换网页时背景音乐不停止播放_html/css_WEB-ITnose
-
jQuery找到指定背景颜色的td_html/css_WEB-ITnose
-
Sass函数颜色函数RGB颜色函数_html/css_WEB-ITnose
-
使用css3背景渐变中的透明度来设置不同颜色的背景渐变_html/css_WEB-ITnose
-
如何切换网页时背景音乐不停止播放_html/css_WEB-ITnose
-
背景图片与背景颜色的问题_html/css_WEB-ITnose
-
CSS3改变页面默认选中背景颜色及设置页面禁止全选或局部选择_html/css_WEB-ITnose