最新回答 / 打代码的Popo
this是谁调用就指向谁,当i元素调用onmouseover方法,里面的匿名函数中的this是指向li这个元素的对象,而调用setInterval方法的对象实际是window对象,在setInterval里面的this其实是指向window对象,这里涉及到JavaScript对象方面的问题,可以自己找资料详细了解
2018-03-17
已采纳回答 / 网络侦探
background-position 属性设置背景图像的起始位置。background-position: x% y% (左上角是 0% 0%。右下角是 100% 100%。通俗记法:x向右为正, y向下为正 )第一个值是水平位置,第二个值是垂直位置。background-position:0 -30px;使背景图片水平方向不移动, 垂直方向上向上移动30像素.建议你直接查文档:http://www.w3school.com.cn/cssref/pr_background-position.a...
2018-03-10
最新回答 / 慕莱坞833307
clearInterval(This.time);-->在前;This.time=setInterval(function(){ -->在后先定义才行吧
2018-01-27
最新回答 / 三生草
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-...
2017-12-28
最新回答 / data_man7
用 jquery是“ <script> ...... $("a").stop().animate({“width”:"160px"},200); ...... </script>”
2017-12-28
最新回答 / qq_fzjiwillbegy_0
a:hover{ color:#fff;background-position:0 -30px;}背景图片要下移,不然color看不到
2017-12-27
最新回答 / ASuYongZhi
<style type="text/css">*{margin:0; padding:0; font-size:14px;}ul{ list-style:none;}a{color:#333;text-decoration:none}.nav li{ float:left; border-top:1px solid #000;}.nav li a{ display:block; text-indent:20px; height:30px; line-height:30px; wid...
2017-12-07