首页 >web前端 >html教程 >2015.08.11-背景颜色切换函数_html/css_WEB-ITnose

2015.08.11-背景颜色切换函数_html/css_WEB-ITnose

WBOY
WBOY原创
2016-06-24 11:39:031316浏览

简单的demo,点击切换背景颜色切换,附上代码。


.html文件

<div> class='red' id="box">美美哒!...........</div>

.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;}

 

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn