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

简单的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;}

登录后复制

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3104282.html

(0)
上一篇 2025年3月29日 08:27:58
下一篇 2025年3月29日 08:28:10

AD推荐 黄金广告位招租... 更多推荐

发表回复

登录后才能评论