AmazeUI 点击元素展示全屏

AmazeUI 点击元素显示全屏

无论是点击图片还是按钮来显示全屏,具体代码如下:

点击按钮:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<script type="text/javascript" src="js/jquery.min.js"></script>
		<script type="text/javascript" src="js/amazeui.legacy.js"></script>
		<script type="text/javascript" src="js/amazeui.js"></script>
		<script type="text/javascript" src="js/amazeui.widgets.helper.js"></script>
		<script type="text/javascript" src="js/app.js"></script>
		<script type="text/javascript" src="js/handlebars.min.js"></script>
		<script type="text/javascript" src="js/polyfill/rem.min.js"></script>
		<script type="text/javascript" src="js/polyfill/respond.min.js"></script>
		<link rel="stylesheet" href="css/amazeui.css" />
		<link rel="stylesheet" href="css/bootstrap.css" />
		<link rel="stylesheet" href="css/admin.css" />
		<link rel="stylesheet" href="css/amazeui.flat.css" />
		<link rel="stylesheet" href="css/app.css" />
		<script type="text/javascript">
			$(function(){
				$('#demo-full-page').on('click',function(){
					if($.AMUI.fullscreen.enabled){
						$.AMUI.fullscreen.request();
					}else{
						//Ignore or do something else
					}
				})
			});
		</script>
	</head>
	<body>
		<button id="demo-full-page" class="am-btn am-btn-primary">Fullscreen the page</button>
	</body>
</html>

类似可以用于任何元素,也能达到这种效果。

AmazeUI却是用起来挺方便快捷的。