简单的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;}
HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号