- 博客(1)
- 资源 (3)
- 收藏
- 关注
原创 yml properties相互转换 工具
yml properties相互转换 工具 java小工具 命令:java -jar properties-yml.jar application.properties 生成application.properties 命令:java -jar properties-yml.jar application.yml 生成application.yml
2021-08-11 23:00:10 363
properties-yml.jar
yml properties相互转换 工具 java小工具
命令:java -jar properties-yml.jar application.properties
生成application.properties
命令:java -jar properties-yml.jar application.yml
生成application.yml
2021-08-11
手机横竖屏切换事件
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml;charset=UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>手机横、竖屏事件</title>
[removed]
//屏幕方向标识,0横屏,其他值竖屏
var orientation=0;
//转屏事件,内部功能可以自定义
function screenOrientationEvent(){
if(orientation == 0)document.getElementById("change").value="竖";
else document.getElementById("change").value="横";
}
var innerWidthTmp = window.innerWidth;
//横竖屏事件监听方法
function screenOrientationListener(){
try{
var iw = window.innerWidth;
//屏幕方向改变处理
if(iw != innerWidthTmp){
if(iw>window.innerHeight)orientation = 90;
else orientation = 0;
//调用转屏事件
screenOrientationEvent();
innerWidthTmp = iw;
}
} catch(e){alert(e);};
//间隔固定事件检查是否转屏,默认500毫秒
setTimeout("screenOrientationListener()",500);
}
//启动横竖屏事件监听
screenOrientationListener();
[removed]
</head>
<body
<input id="change" type="text" value=""/>
</body>
</html>
2013-02-26
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人