加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
libre 提交于 2014-11-18 10:52 . init file
<!DOCTYPE html>
<html class="um landscape min-width-240px min-width-320px min-width-480px min-width-768px min-width-1024px">
<head>
<meta charset="utf-8">
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<title>SectorMenu Test</title>
<style type="text/css">
#menul {
width: 3.7em;
height: 3.7em;
background: red;
-moz-border-radius: 3.7em;
-webkit-border-radius: 3.7em;
border-radius: 50px;
bottom: 100px;
right: 100px;
position: fixed;
z-index: 2;
}
.hover{}
.hover:hover{
background-color: #ff0000
}
</style>
</head>
<body>
<div id="menul"></div>
<script src="js/zepto.js"></script>
<script src="js/zepto.touch.js"></script>
<script src="js/zepto.sectorMenu.js"></script>
</body>
<script>
$('#menul').sectorMenu({
angle:45,
radius:150,
count:3,
itemIcon:[
'icon/01.png',
'icon/02.png',
'icon/03.png',
],
itemTag:[
'btn-share',
'btn-wish',
'btn-setting'
],
itemClass:'hover',
itemEvent:function(e){
console.log($(this).data('tag'));
},
itemWidth:3,
itemHeight:3,
event:'tap'
});
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化