<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<img src="2.jpg" alt="3.jpg" id="image11" >
<p id="image22">图二</p>
<input type="button" name="button1" value="水平翻转" OnClick="document.getElementById('image11').style.filter='flipH'"><br>
<input type="button" name="button2" value="竖直翻转" OnClick="image11.style.filter:flipV"><br>
</body>
</html>
懒人3899010