用js写一个功德木鱼

功德木鱼

首先找一张木鱼的图片

木鱼

把图片放进网页里面,并把背景调成黑色

写一个“功德+1” 并隐藏它



<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>功德木鱼</title>
</head>
<script type="text/javascript" src="./jq.js"></script>

<body style="background-color: black;">
<div style="margin-top: 200px;margin-left: 30%;">
<!-- 木鱼 -->
	<img style="height: ;"  src="./muyu.png" id="muyu">
<div id="gongde" style="font-size: 50px;color: white;position: absolute;top: 190px;right: 30%;display: none;">
	<span>功德</span><span>+</span><span id="num">1</span>
</div>

</body>
</html>

写js


//这里用来jq ,别忘了在上面引入jq
//是鼠标按下 图片缩小 显示 功德+1
var myImg = document.getElementById('muyu');
$("#muyu").mousedown(function () {
	myImg.width = myImg.width/1.1;
	myImg.height = myImg.height/1.1;
	$("#gongde").show();
});
//是鼠标抬起 图片放大 隐藏 功德+1
$("#muyu").mouseup(function () {
	myImg.width = myImg.width*1.1;
	myImg.height = myImg.height*1.1;
	$("#gongde").hide();
});

效果有点僵硬,但是实现简单,感兴趣自己试一试;

完整代码


<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>功德木鱼</title>
</head>
<script type="text/javascript" src="./jq.js"></script>

<body style="background-color: black;">
<div style="margin-top: 200px;margin-left: 30%;">
<!-- 木鱼 -->
	<img  src="./muyu.png" id="muyu">
	
</div>
<div id="gongde" style="font-size: 50px;color: white;position: absolute;top: 190px;right: 30%;display: none;"><span>功德</span><span>+</span><span id="num">1</span></div>

</body>
<script type="text/javascript">
$("#muyu").mousedown(function () {
	myImg.width = myImg.width/1.1;
	myImg.height = myImg.height/1.1;
	$("#gongde").show();
});

$("#muyu").mouseup(function () {
	myImg.width = myImg.width*1.1;
	myImg.height = myImg.height*1.1;
	$("#gongde").hide();
});
</script>
</html>

在这里插入图片描述

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值