-
鼠标简单跟随提示二
- function id(s){
- return document.getElementById(s);
- }
-
- function mouseFollow() {
- var e = e ? e : window.event;
- var posx = e.clientX;
- var posy = e.clientY;
- var followDiv = id("followDiv") ? id("followDiv"): document.createElement("div");
- followDiv.setAttribute("id","followDiv");
- var css = "100px;height:20px;border:1px solid grey;position:absolute;z-index:10000;left:"+posx+";top:"+posy+";";
- setCss(followDiv,css);
- document.body.appendChild(followDiv);
- }
-
- function getStyle(element, name) {
- var computedStyle;
- try {
- computedStyle = document.defaultView.getComputedStyle(element,
null);
- } catch (e) {
- computedStyle = element.currentStyle;
- }
- if (name != "float") {
- return computedStyle[name];
- } else {
- return computedStyle["cssFloat"] || computedStyle["styleFloat"];
- }
- }
-
- function setStyle(element, name, value) {
- if (name != "float") {
- element.style[name] = value;
- } else {
- element.style["cssFloat"] = value;
- element.style["styleFloat"] = value;
- }
- }
-
- function setCss(obj,css){
- obj.setAttribute("style",css);
- obj.style.cssText = css;
- }
-
相关阅读:
遍历进程,获取当前进程下进程的路径.(获得全路径)
获得当前EIP的值
反调试收集网址,待更新.
python学习第八讲,python中的数据类型,列表,元祖,字典,之字典使用与介绍
python学习第七讲,python中的数据类型,列表,元祖,字典,之元祖使用与介绍
【Unity】2.4 层次视图(Hierarchy)
【Unity】2.3 项目浏览器和资源的组织
破解Unity5.3.4f1
【Unity】2.2 Unity编辑器中的常用菜单项
【Unity】2.1 初识Unity编辑器
-
原文地址:https://www.cnblogs.com/bjanzhuo/p/3576101.html
Copyright © 2020-2023
润新知