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

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

WBOY
發布: 2016-06-24 11:39:03
原創
1323 人瀏覽過

简单的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;}
登入後複製

 

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板