亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

jQuery

jQuery中offset()方法運(yùn)用示例

時(shí)間:2024-09-30 14:50:41 jQuery 我要投稿
  • 相關(guān)推薦

jQuery中offset()方法運(yùn)用示例

  jQuery中offset()方法運(yùn)用示例

  此方法返回或設(shè)置所匹配元素相對(duì)于document對(duì)象的偏移量。

  語(yǔ)法結(jié)構(gòu)一:

  復(fù)制代碼 代碼如下:$(selector).offset()

  獲取匹配元素在當(dāng)前document的相對(duì)偏移。

  返回的對(duì)象包含兩個(gè)整型屬:top和left。

  此方法只對(duì)可見(jiàn)元素有效。

  實(shí)例代碼:

  復(fù)制代碼 代碼如下:

  *{

  margin:0px;

  padding:0px;

  }

  .father{

  border:1px solid black;

  width:400px;

  height:300px;

  padding:10px;

  margin:50px;

  }

  .children{

  height:150px;

  width:200px;

  margin-left:50px;

  background-color:green;

  }

  $(document).ready(function(){

  $("button").click(function(){

  a=$(".children").offset();

  alert("元素的偏移量坐標(biāo)是:"+a.top+"|"+a.left+"");

  })

  })

  獲取元素的坐標(biāo)

  以上代碼可以彈出子div相對(duì)于document的.偏移量。

  語(yǔ)法結(jié)構(gòu)二:

  復(fù)制代碼 代碼如下:$(selector).offset(value)

  設(shè)置匹配元素相對(duì)于document對(duì)象的坐標(biāo)。

  offset()方法可以讓我們重新設(shè)置元素的位置。這個(gè)元素的位置是相對(duì)于document對(duì)象的。

  如果對(duì)象原先的position樣式屬性是static的話(huà),會(huì)被改成relative來(lái)實(shí)現(xiàn)重定位。

  參數(shù)列表:

  參數(shù) 描述  value 規(guī)定以像素計(jì)的 top 和 left 坐標(biāo)。

  可能的值:

  1.值對(duì),比如 {top:200,left:10}。

  2.帶有top和left 屬性的對(duì)象。

  實(shí)例代碼:

  復(fù)制代碼 代碼如下:

  .father{

  border:1px solid black;

  width:400px;

  height:300px;

  }

  .children{

  height:150px;

  width:200px;

  background-color:green;

  }

  $(document).ready(function(){

  $("button").click(function(){

  $(".children").offset({top:100,left:100})

  })

  })

  點(diǎn)擊設(shè)置偏移量

  以上代碼可以設(shè)置div相對(duì)于document的偏移量。

  語(yǔ)法結(jié)構(gòu)三:

  使用函數(shù)的返回值來(lái)設(shè)置偏移坐標(biāo):

  復(fù)制代碼 代碼如下:$(selector).offset(function(index,oldoffset))

  參數(shù)列表:

  參數(shù) 描述  function(index,oldvalue) 規(guī)定返回被選元素新偏移坐標(biāo)的函數(shù):

  index - 可選。元素的索引。

  oldvalue - 可選。當(dāng)前坐標(biāo)。

  實(shí)例代碼:

  復(fù)制代碼 代碼如下:

  .father{

  border:1px solid black;

  width:400px;

  height:300px;

  }

  .children{

  height:150px;

  width:200px;

  background-color:green;

  }

  $(document).ready(function(){

  $("button").click(function(){

  $(".children").offset(function(a,b){

  var newpoint= new Object();

  newpoint.top=b.top+50;

  newpoint.left=b.left+50;

  return newpoint;

  })

  })

  })

  點(diǎn)擊設(shè)置偏移量

  以上代碼同樣可以設(shè)置元素的偏移,不過(guò)值是通過(guò)函數(shù)返回。


【jQuery中offset()方法運(yùn)用示例】相關(guān)文章:

聲樂(lè)中的氣息運(yùn)用技巧02-24

UI設(shè)計(jì)中的色彩運(yùn)用08-24

設(shè)計(jì)中顏色的運(yùn)用技巧01-04

運(yùn)用Excel制作圖表的方法11-28

色彩在平面設(shè)計(jì)中的運(yùn)用04-10

現(xiàn)代舞中呼吸的運(yùn)用03-04

2023少兒聲樂(lè)中的“趣味教學(xué)”運(yùn)用11-08

傳統(tǒng)視覺(jué)要素在動(dòng)畫(huà)設(shè)計(jì)中的運(yùn)用09-05

Excel中if函數(shù)使用的方法06-16

色彩搭配在平面設(shè)計(jì)中的運(yùn)用12-24