javaScript
鑫运
前端工程师
展开
-
js封装动画函数
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>点击按钮移动div</title> <style type="text/css"> *{ margin: 0; padding: 0; } #box1{ width: 100px; height: 100px; background-.原创 2021-08-03 17:31:20 · 125 阅读 · 0 评论 -
javascript获取元素当前正在使用的样式
//获取元素当前正在使用的样式//obj 获取样式的元素 name获取样式的名称getStyte(obj,name){ if(window.getComputedStyle){ //正常浏览器具有getComputedStyle()方法 return getComputedStyle(obj , null)[name]; }else{ //兼容ie8 return obj.currentStyte[name]; }}...原创 2021-08-03 16:26:11 · 138 阅读 · 0 评论 -
纯javascript图片轮播
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>serInterval_轮播图</title> <style type="text/css"> *{ margin: 0; padding: 0; ...原创 2021-08-03 15:51:25 · 116 阅读 · 0 评论 -
javaScript判断当前浏览器(谷歌、火狐、IE)兼容IE11
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>判断当前浏览器是否为IE</title> <script type="text/javascript"> window.onload = function(){ var ua = navigato...原创 2021-07-27 15:23:48 · 888 阅读 · 0 评论 -
鼠标移动方块
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>键盘事件</title> <style type="text/css"> #box{ width: 100px; height: 100px; ...原创 2021-07-27 11:09:21 · 167 阅读 · 0 评论 -
鼠标滚轮滚动事件,兼容IE8和火狐、谷歌
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #box1{ width: 100px; height: 100px; ...原创 2021-07-26 17:19:51 · 311 阅读 · 0 评论