📄 style.js
字号:
window.onload=get_styles;
// a function to display the style attributes of a <div>
function get_styles()
{
var obj = window.document.getElementById("lyr");
var str = "ID: " + obj.id + "\n";
str += "Top: " + obj.style.top + "\n";
str += "Left: " + obj.style.left + "\n";
str += "Z-Index: " + obj.style.zIndex + "\n";
str += "Visibility: " + obj.style.visibility + "\n";
str += "Background: " + obj.style.backgroundColor + "\n";
str += "Foreground: " + obj.style.color;
alert(str);
}
function restyle()
{
var obj = window.document.getElementById("lyr");
obj.style.top = "150px";
obj.style.left = "20px";
obj.style.zIndex = "20";
obj.style.backgroundColor = "lime";
obj.style.color = "blue";
get_styles();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -