## js点击事件
>效果如图
>
(忽略左边的黑线)
![](https://box.kancloud.cn/d1084ce53de1a11576dcc3f69761ffa0_1174x608.gif)
>html代码
```
<p class="title">请为下面的div设置样式: <span id="click">点击设置</span></p>
<div id="test"></div>
<div id="setting">
<p>请选择背景色:
<span id="red">红</span>
<span id="yellow">黄</span>
<span id="blue">蓝</span>
</p>
<p>请选择宽(px):
<span id="w-2">200</span>
<span id="w-3">300</span>
<span id="w-4">400</span>
</p>
<p>请选择高(px):
<span id="h-2">200</span>
<span id="h-3">300</span>
<span id="h-4">400</span>
</p>
<span id="reset">恢复</span>
<span id="makesure">确定</span>
</div>
```
>css代码
```
* {
margin: 0;
padding: 0;
}
.title {
font-size: 25px;
font-weight: bold;
}
.title>span {
padding: 5px;
background: red;
color: #fff;
cursor: pointer;
}
#test {
width: 50px;
height: 50px;
margin-top: 40px;
border: 3px solid #ddd;
}
#setting {
position: fixed;
display: none;
top: 20%;
right: 40%;
padding: 10px;
font-size: 20px;
border: 5px solid #ccc;
}
#setting>p {
margin-bottom: 17px;
}
#setting span {
margin: 0 3px;
padding: 3px 10px;
cursor: pointer;
}
#setting span:hover {
background-color: aquamarine;
}
#setting>span {
background-color: cadetblue;
color: #fff;
}
#setting>p>span {
padding: 3px 10px;
background-color: #ddd;
}
```
>js代码
```
window.onload = function(){
/*封装$*/
var $ = function(id){
return document.getElementById(id);
}
var click = $("click");
click.onclick = function(){setting.style.display = "block";}
/*建立设置颜色,宽,高的函数*/
function c_color(id, color){
var dom = document.getElementById(id);
dom.style.backgroundColor = color;
}
function w_width(id, width){
var dom = document.getElementById(id);
dom.style.width = width + "px";
}
function h_height(id, height){
var dom = document.getElementById(id);
dom.style.height = height +"px";
}
/*为各个按钮设置点击动作*/
$("red").onclick = function(){c_color("test", "red");}
$("yellow").onclick = function(){c_color("test", "yellow");}
$("blue").onclick = function(){c_color("test", "blue");}
$("w-2").onclick = function(){w_width("test", 200);}
$("w-3").onclick = function(){w_width("test", 300);}
$("w-4").onclick = function(){w_width("test", 400);}
$("h-2").onclick = function(){h_height("test", 200);}
$("h-3").onclick = function(){h_height("test", 300);}
$("h-4").onclick = function(){h_height("test", 400);}
$("reset").onclick = function(){
$("test").style.width = 50 + "px";
$("test").style.height = 50 + "px";
$("test").style.backgroundColor = "#fff";
}
$("makesure").onclick = function(){
$("setting").style.display = "none";
}
}
```
----
整个demo已上传至[github](https://github.com/MrXuxu/H5_demo/tree/master/JS%E7%82%B9%E5%87%BB%E4%BA%8B%E4%BB%B6)
- 空白目录
- css实用样式
- css--下拉栏的几种设计
- css--图片阴影以及浮起的效果
- css--图片翻转二:自动翻转
- css--图片翻转一:滑过翻转
- css--三种loading特效
- css--图片遮罩效果实现
- css--又是三种loading特效
- css--带三角形的图形实现
- js demo
- 原生demo
- 1. 原生js实现轮播图
- 2. 倒计时按钮
- 3. 动态添加表格
- 4. checkbox全选反选
- 5. 小米登录方式切换
- 6. 点击事件
- 7. 个人网页导航条(二)点击滚动
- 8. 瀑布流实现!
- 9. 个人网页导航条(一)滑动固定
- 10. 定时器实现淡入淡出效果
- 11. 轮播图setTimeout版
- jQuery demo
- 1. 轮播图实现!
- 2. 成都小风车导航特效
- html组件
- html--导航栏(家居医生)
- html--登录页面(小米登录)
- html--响应式导航条(木兮地板)
- html--搜索栏
- Vue demo
- 1. mvvm实现动态添加表格
- 2. 豆瓣TOP250渲染
- 3. 制作一段跑马灯文字
- 3.1. vue 单行文字自动跑马灯效果
- 4. 利用豆瓣接口搜索书籍
- 5. 制作简易计算器
- 6. 创建一个点赞组件
- 7. 列表添加删除动画
- 8. isShow手风琴原理
- 9. tab栏切换