Home  >  Article  >  Web Front-end  >  jquery practical online photo album manager

jquery practical online photo album manager

无忌哥哥
无忌哥哥Original
2018-06-29 14:47:491671browse

jquery practical online photo album manager

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jquery实战之在线相册管理器</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/demo.js"></script>
</head>
<body>
<div>
<div>
<h2>在线相册管理器</h2>
<p>
<label for="img_url">请输入图片地址:</label>
<!-- <input type="text" name="img_url" id="img_url" placeholder="images/demo.jpg" value="images/zly.jpg"> -->
<input type="text" name="img_url" id="img_url" placeholder="images/demo.jpg">
</p>
        <p>请选择图片类型:
         <input type="radio" id="rect" name="border" value="0" checked><label for="rect">直角</label>
            <input type="radio" id="radius" name="border" value="10%"><label for="radius">圆角</label>
            <input type="radio" id="circle" name="border" value="50%"><label for="circle">圆型</label>
        </p>
        <p>图片是否添加阴影:
<select name="shadow">
<option value="0" selected>不添加</option>
<option value="1">添加</option>
</select>
        </p>
        <p><button>添加图片</button></p>
</div>
<div>
<ul></ul>
</div>
</div>
</body>
</html>

The above is the detailed content of jquery practical online photo album manager. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn