Blogger Information
Blog 27
fans 1
comment 2
visits 25270
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
实例之jQuery——在线相册管理器-(2018年4月10日15点30分)
一枝黄花
Original
511 people have browsed it

实例之jQuery——在线相册管理器-(2018年4月10日15点30分)

效果预览图

QQ截图20180410152635.png

在线相册管理器代码

实例

<!--注释-->

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>jquery实战之在线相册管理器</title>
  <link rel="stylesheet" type="text/css" href="css/2.css">
  <script type="text/javascript" src="../ajax/js/jquery.js"></script>
	<script type="text/javascript" src="../ajax/js/1.js"></script>

</head>
<body>
<div class="wrap">
		<div class="header">
			<h2>在线相册管理器</h2>
			<p>
<label>请输入图片的地址</label>
<input type="text" name="img_url" id="img_url" placeholder="../images/xxx.png">
</p>
<p>请选择图片类型:
<input type="radio" id="rect" name="border" value="0" checked><label for="rect">直角</label>
<input type="radio" id="radius" name="border" value="20%" checked><label for="radius">圆角</label>
<input type="radio" id="circle" name="border" value="50%" checked><label for="circle">圆形</label>
</p>
<p>图片是否添加阴影:
<select name="shadow">
<option value="0" selected>不添加</option>
<option value="1">添加</option>
</select>
</p>
<p><button class="add">添加图片</button></p>
<div class="main">
<ul>
</ul>
</div>
</div>
</div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments