3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

flot中文API(转载)

發布時間:2025/3/21 编程问答 21 豆豆
生活随笔 收集整理的這篇文章主要介紹了 flot中文API(转载) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Flot Reference
flot參考文檔
--------------

Consider a call to the plot function:
下面是對繪圖函數plot的調用:

?? var plot = $.plot(placeholder, data, options)

The placeholder is a jQuery object or DOM element or jQuery expression
that the plot will be put into. This placeholder needs to have its
width and height set as explained in the README (go read that now if
you haven't, it's short). The plot will modify some properties of the
placeholder so it's recommended you simply pass in a div that you
don't use for anything else. Make sure you check any fancy styling
you apply to the div, e.g. background images have been reported to be a
problem on IE 7.

占位符placeholder是一個jQuery對象或者DOM元素或者jQuery表單式,繪圖函數將把圖表畫在placeholder內。
這個占位符需要設置高寬(這在README文檔里面已經介紹過,如果你還沒有閱讀過現在就去閱讀吧,文檔很短)。
plot函數畫圖時將修改這個占位符的內容,因此你最好使用一個空的DIV元素作為占位符,另外注意不要給占位符
設置花哨的樣式,比如,在IE7.0下,給占位符設置背景圖將會出錯。

The format of the data is documented below, as is the available
options. The "plot" object returned has some methods you can call.
These are documented separately below.

函數可以使用的數據格式會在后面說明,plot返回對象有一些方法可供調用,在后面會分開介紹。

Note that in general Flot gives no guarantees if you change any of the
objects you pass in to the plot function or get out of it since
they're not necessarily deep-copied.

另外請注意,flot不保證plot函數內的對象被修改或刪除后仍然能正常工作(廢話)。

Data Format
數據格式
-----------

The data is an array of data series:
flot的數據是一個數列數組(plot函數中的data參數:每條曲線一個data項參數,繪制多條曲線時,是一個數組,每個數組元素是一條曲線的data項參數):

? [ series1, series2, ... ]

A series can either be raw data or an object with properties. The raw
data format is an array of points:

數列可以是原始數據,也可以是數據對象,原始數據格式是由一組表示數據點的坐標值的數組構成:

? [ [x1, y1], [x2, y2], ... ]

E.g.

? [ [1, 3], [2, 14.01], [3.5, 3.14] ]

Note that to simplify the internal logic in Flot both the x and y
values must be numbers (even if specifying time series, see below for
how to do this). This is a common problem because you might retrieve
data from the database and serialize them directly to JSON without
noticing the wrong type. If you're getting mysterious errors, double
check that you're inputting numbers and not strings.

請注意,flot的縱橫坐標值都必須是數字(即使用時間數列也是,后面會介紹到),
這是個很常見的錯誤,因為你很可能從數據庫獲取數據后沒有檢查數據類型就直接轉化成json對象使用。
如果你覺得遇到了莫名其妙的錯誤,請確認一下你輸入的是數字而不是字符串。

If a null is specified as a point or if one of the coordinates is null
or couldn't be converted to a number, the point is ignored when
drawing. As a special case, a null value for lines is interpreted as a
line segment end, i.e. the points before and after the null value are
not connected.

如果坐標為值為空 ,或者其中的一個坐標值為空,或者不是數字,或者說不能轉換為數字,那么這個節點將被忽略,
并且該節點前后的2個節點之間不會使用直線來連接。

Lines and points take two coordinates. For bars, you can specify a
third coordinate which is the bottom of the bar (defaults to 0).

折線圖和散點圖每個節點有2個參數,直方圖則有3個參數,第三個參數來指定直方圖的底部位置(缺省值是0)。

The format of a single series object is as follows:

單個圖表對象的數據格式參數如下所示:

? {
??? color: color or number?? //顏色
??? data: rawdata? //數據
??? label: string? //曲線名稱
??? lines: specific lines options? //折線圖坐標參數
??? bars: specific bars options?? //直方圖坐標參數
??? points: specific points options? //散點圖坐標參數
??? xaxis: 1 or 2? //使用哪一條X軸,如果某條數軸沒有被任何一條曲線使用,該數軸不會在圖表上出現
??? yaxis: 1 or 2? //使用哪一條Y軸
??? clickable: boolean? //允許監聽鼠標點擊事件
??? hoverable: boolean? //允許監聽鼠標懸停事件
??? shadowSize: number //曲線陰影
? }

You don't have to specify any of them except the data, the rest are
options that will get default values. Typically you'd only specify
label and data, like this:

一般情況下你無須設置每一個參數, 你只需要設置其中幾個特定的參數即可,其他參數會使用默認值。例如:
? {
??? label: "y = 3",
??? data: [[0, 3], [10, 3]]
? }

The label is used for the legend, if you don't specify one, the series
will not show up in the legend.

label用于指定曲線名稱,如果沒有設置label的值,圖表標題區域不會出現。

If you don't specify color, the series will get a color from the
auto-generated colors. The color is either a CSS color specification
(like "rgb(255, 100, 123)") or an integer that specifies which of
auto-generated colors to select, e.g. 0 will get color no. 0, etc.

如果沒有設置曲線顏色,程序會自動采用默認顏色(options項里的colors數列)。顏色值可以是CSS顏色格式(RGB格式、16進制顏色、WEB通用顏色名),
還可以是數字編號,數字編號表示顏色數列里面顏色的編號。

The latter is mostly useful if you let the user add and remove series,
in which case you can hard-code the color index to prevent the colors
from jumping around between the series.

如果你允許用戶重置或刪除曲線,后者會比較有用,你可以在代碼里面設置曲線使用的默認顏色的序號防止相同顏色在不用曲線間重復出現。

The "xaxis" and "yaxis" options specify which axis to use, specify 2
to get the secondary axis (x axis at top or y axis to the right).
E.g., you can use this to make a dual axis plot by specifying
{ yaxis: 2 } for one data series.

xaxis" 和 "yaxis" 設置曲線使用的數軸(第二條X軸是頂部橫軸,第二條Y軸是右邊的縱軸),你可以使用這個屬性制作雙數軸曲線

"clickable" and "hoverable" can be set to false to disable
interactivity for specific series if interactivity is turned on in
the plot, see below.

"clickable" 和 "hoverable"用于關閉該曲線的鼠標點擊效果或鼠標懸停效果,具體說明看后面。
(options中的"clickable" 或 "hoverable"設置為true時可以在某條曲線的data里設置"clickable" 或 "hoverable"為false,但options中設置為false時,不能在這里設置為true)

The rest of the options are all documented below as they are the same
as the default options passed in via the options parameter in the plot
commmand. When you specify them for a specific data series, they will
override the default options for the plot for that data series.

其他參數在后面介紹,他們與plot函數的"options"參數的設置項是一樣的,
如果你為某條曲線在data里面設置了這些參數的值,他們會覆蓋掉options的默認值。

Here's a complete example of a simple data specification:

下面是一個簡單例子,設置了2條曲線的參數:

? [ { label: "Foo", data: [ [10, 1], [17, -14], [30, 5] ] },
??? { label: "Bar", data: [ [11, 13], [19, 11], [30, -7] ] } ]


Plot Options
plot的options參數
------------

All options are completely optional. They are documented individually
below, to change them you just specify them in an object, e.g.

options的所有選項都是可選的,他們都有默認值,后面會逐條對他們進行講解,如果要修改這些選項的默認值你只需要明確指定他們的值即可,例如:

? var options = {
??? series: {
????? lines: { show: true },
????? points: { show: true }
??? }
? };

? $.plot(placeholder, data, options);


Customizing the legend
legend:定制曲線圖表標題
======================

? legend: {
??? show: boolean
??? labelFormatter: null or (fn: string, series object -> string)
??? labelBoxBorderColor: color
??? noColumns: number
??? position: "ne" or "nw" or "se" or "sw"
??? margin: number of pixels or [x margin, y margin]
??? backgroundColor: null or color
??? backgroundOpacity: number between 0 and 1
??? container: null or jQuery object/DOM element/jQuery expression
? }


The legend is generated as a table with the data series labels and
small label boxes with the color of the series. If you want to format
the labels in some way, e.g. make them to links, you can pass in a
function for "labelFormatter". Here's an example that makes them
clickable:

legend 用于生成圖表標題,圖表標題以表格的方式顯示在曲線圖上,內容包括每條曲線的名稱及其對應顏色,
如果你想定制圖表標題的格式,比如做成超鏈接,你可以在"labelFormatter"項使用函數來定制,下面的例子把圖表標題做成鏈接

? labelFormatter: function(label, series) {
??? // series is the series object for the label? //series是名稱為label的曲線的數據對象
??? return '<a href="#' + label + '">' + label + '</a>';
? }


"noColumns" is the number of columns to divide the legend table into.

"noColumns" 用于設置legend表格的列數

"position" specifies the overall placement of the legend within the
plot (top-right, top-left, etc.) and margin the distance to the plot
edge (this can be either a number or an array of two numbers like [x,
y]). "backgroundColor" and "backgroundOpacity" specifies the
background. The default is a partly transparent auto-detected
background.

position:用于指定legend在曲線圖內的位置,"ne"東北角,"se"東南 , "nw"西北 , "sw"西南
margin: 設置legend與曲線圖邊框的距離,可以是x y軸偏移量的數值對[x,y]也可以是單個數字,單個數字值表示相對x,y軸的偏移量使用相同的值
采用哪條X軸和Y軸作為參照物取決于position的值
backgroundColor: 設置legend的背景顏色
backgroundOpacity: 設置legend背景的透明度

If you want the legend to appear somewhere else in the DOM, you can
specify "container" as a jQuery object/expression to put the legend
table into. The "position" and "margin" etc. options will then be
ignored. Note that Flot will overwrite the contents of the container.

如果你想把legend放在其他DOM元素內,可以為container設定一個值,
container的值可以是jQuery對象或表達式,例如:container: $("#showChartLegend"),把標題顯示在id為showChartLegend的div或其他容器類標簽內,
container為legend指定容器后,"position" 和 "margin" 等與圖表相關的位置屬性會被忽略,
另外請注意,container指定的容器內容會被覆蓋掉。

Customizing the axes
數軸定制
====================

? xaxis, yaxis, x2axis, y2axis: {
??? mode: null or "time"? //數軸是否為時間模式
??? min: null or number? //數軸最小值
??? max: null or number? //數軸最大值
??? autoscaleMargin: null or number? //按百分比為數軸延長一小段來縮放曲線以避免曲線最遠的數據點出現在圖表邊框上
???????????????????????????????????? //延長的距離為單位刻度的整數倍,且剛好不小于(max-min)*number,其中min端增加1個刻度單位的長度,當對應數軸的min和max值至少一個為null時才生效
???????????????????????????????????? //其中一個特例是,如果數據點的最小值為0,則min端不增長數軸,數據點會出現的邊框上
???????????????????????????????????? //對X軸,該值默認為null,對Y軸,該值默認為0.02
???
??? labelWidth: null or number
??? labelHeight: null or number

??? transform: null or fn: number -> number
??? inverseTransform: null or fn: number -> number
???
??? ticks: null or number or ticks array or (fn: range -> ticks array)
??? tickSize: number or array
??? minTickSize: number or array
??? tickFormatter: (fn: number, object -> string) or string
??? tickDecimals: null or number
? }

All axes have the same kind of options. The "mode" option
determines how the data is interpreted, the default of null means as
decimal numbers. Use "time" for time series data, see the next section.

所有數軸都有相同的參數設置,mode為null表示數軸十進制,為time設置為時間軸

The options "min"/"max" are the precise minimum/maximum value on the
scale. If you don't specify either of them, a value will automatically
be chosen based on the minimum/maximum data values.

"min"/"max" 設置數軸最大值和最小值,如果沒有明確指定他們,將自動使用數據中的最小值和最大值

The "autoscaleMargin" is a bit esoteric: it's the fraction of margin
that the scaling algorithm will add to avoid that the outermost points
ends up on the grid border. Note that this margin is only applied
when a min or max value is not explicitly set. If a margin is
specified, the plot will furthermore extend the axis end-point to the
nearest whole tick. The default value is "null" for the x axis and
0.02 for the y axis which seems appropriate for most cases.

"autoscaleMargin"的解釋見上文

"labelWidth" and "labelHeight" specifies a fixed size of the tick
labels in pixels. They're useful in case you need to align several
plots.

"labelWidth" 和 "labelHeight" 用于設置數軸刻度標簽的高寬,這個屬性在你需要排列整齊幾個圖表的時候會派上用場。


"transform" and "inverseTransform" are callbacks you can put in to
change the way the data is drawn. You can design a function to
compress or expand certain parts of the axis non-linearly, e.g.
suppress weekends or compress far away points with a logarithm or some
other means. When Flot draws the plot, each value is first put through
the transform function. Here's an example, the x axis can be turned
into a natural logarithm axis with the following code:

"transform" and "inverseTransform" 是回調函數,用于改變數軸上的數據顯示方式,
你可以設計一個函數來非線性地擴展或壓縮數軸上的特定數據段

? xaxis: {
??? transform: function (v) { return Math.log(v); },
??? inverseTransform: function (v) { return Math.exp(v); }
? }

Note that for finding extrema, Flot assumes that the transform
function does not reorder values (monotonicity is assumed).
需要注意的是,flot假定transform函數不會修改數據點的排列順序


The inverseTransform is simply the inverse of the transform function
(so v == inverseTransform(transform(v)) for all relevant v). It is
required for converting from canvas coordinates to data coordinates,
e.g. for a mouse interaction where a certain pixel is clicked. If you
don't use any interactive features of Flot, you may not need it.

inverseTransform 函數是對transform的逆運算,因此有:v == inverseTransform(transform(v)
當需要把坐標數據轉換回數值數據時就會用到這個函數,這常在圖表的動態交互時發生,比如鼠標在
圖標上面點擊并獲取該點數據,但是如果你不做任何動態的交互,你可能不會用到這個函數。

The rest of the options deal with the ticks.
其他與刻度的網格線有關的參數。

If you don't specify any ticks, a tick generator algorithm will make
some for you. The algorithm has two passes. It first estimates how
many ticks would be reasonable and uses this number to compute a nice
round tick interval size. Then it generates the ticks.

如果你沒有明確地設置刻度間隔,程序會自動設置,設置過程分為2步,
首先估計數軸刻度間隔所需數目,其次根據這個數目通過四舍五入方法估算合適的步長,最后生成刻度


You can specify how many ticks the algorithm aims for by setting
"ticks" to a number. The algorithm always tries to generate reasonably
round tick values so even if you ask for three ticks, you might get
five if that fits better with the rounding. If you don't want any
ticks at all, set "ticks" to 0 or an empty array.

通過設置"ticks" 的值為數字,你可以設置圖表產生刻度間隔的個數,但是程序盡量會設置最合適的刻度
個數,因此,盡管你設置了3個刻度數,卻可能得到5個,如果你不需要自己設置刻度,把"ticks"的值設置為0或一個空數組

Another option is to skip the rounding part and directly set the tick
interval size with "tickSize". If you set it to 2, you'll get ticks at
2, 4, 6, etc. Alternatively, you can specify that you just don't want
ticks at a size less than a specific tick size with "minTickSize".
Note that for time series, the format is an array like [2, "month"],
see the next section.

"tickSize"直接跳過估算步驟設置刻度間隔步長,如果你設置該值為2,生成的刻度將會是形如2,4,6
"minTickSize"可以設置刻度間隔的最小值,

If you want to completely override the tick algorithm, you can specify
an array for "ticks", either like this:

如果你想完全的自定義刻度,可以設置參數"ticks"的值為一個數組,賦值方法如下例:

? ticks: [0, 1.2, 2.4]

Or like this where the labels are also customized:
或者像下面的例子,連刻度的標簽也自定義:

? ticks: [[0, "zero"], [1.2, "one mark"], [2.4, "two marks"]]

You can mix the two if you like.
這兩種方法可以混合使用

?
For extra flexibility you can specify a function as the "ticks"
parameter. The function will be called with an object with the axis
min and max and should return a ticks array. Here's a simplistic tick
generator that spits out intervals of pi, suitable for use on the x
axis for trigonometric functions:

刻度可以用函數來生成,方法是把一個函數賦給"ticks",該函數應該以一個具有最大刻度值及最小刻度值的數軸對象為參數,
該函數返回一個刻度數組賦給"ticks"。
下例是一個簡單的刻度生成器,例子以pi值為刻度間隔大小,這對三角函數曲線非常適用。

? function piTickGenerator(axis) {
??? var res = [], i = Math.floor(axis.min / Math.PI);
??? do {
????? var v = i * Math.PI;
????? res.push([v, i + "\u03c0"]);
????? ++i;
??? } while (v < axis.max);
???
??? return res;
? }


You can control how the ticks look like with "tickDecimals", the
number of decimals to display (default is auto-detected).

"tickDecimals" 用于設置刻度的小數位數,默認情況下程序會自動判斷截取


Alternatively, for ultimate control over how ticks look like you can
provide a function to "tickFormatter". The function is passed two
parameters, the tick value and an "axis" object with information, and
should return a string. The default formatter looks like this:

"tickFormatter"可以通過函數來設置刻度顯示格式,格式函數有2個參數,刻度值及數軸對象。函數應該返回一個字符串賦給tickFormatter。
"tickFormatter"格式函數基本格式如下:

? function formatter(val, axis) {
??? return val.toFixed(axis.tickDecimals);
? }

The axis object has "min" and "max" with the range of the axis,
"tickDecimals" with the number of decimals to round the value to and
"tickSize" with the size of the interval between ticks as calculated
by the automatic axis scaling algorithm (or specified by you). Here's
an example of a custom formatter:

數軸對象可以獲取數軸數據的最大值和最小值,tickDecimals可以獲取刻度標簽的小數位數,
tickSize可以獲取刻度間隔長度(程序算法自動計算出或自定義)。


? function suffixFormatter(val, axis) {
??? if (val > 1000000)
????? return (val / 1000000).toFixed(axis.tickDecimals) + " MB";? // toFixed() 函數,把數值四舍五入為指定小數位數
??? else if (val > 1000)
????? return (val / 1000).toFixed(axis.tickDecimals) + " kB";
??? else
????? return val.toFixed(axis.tickDecimals) + " B";
? }

Time series data
時間數軸
================

Time series are a bit more difficult than scalar data because
calendars don't follow a simple base 10 system. For many cases, Flot
abstracts most of this away, but it can still be a bit difficult to
get the data into Flot. So we'll first discuss the data format.

時間數軸比標量數軸要難一點,因為時間數軸并不遵循10進制。下面討論時間數軸的數據格式

The time series support in Flot is based on Javascript timestamps,
i.e. everywhere a time value is expected or handed over, a Javascript
timestamp number is used. This is a number, not a Date object. A
Javascript timestamp is the number of milliseconds since January 1,
1970 00:00:00 UTC. This is almost the same as Unix timestamps, except it's
in milliseconds, so remember to multiply by 1000!

flot對時間軸的支持是基于javascript的時間戳的,也就是說每個已經過去的或未來的時間都對應一個時間戳。
時間戳是一個數字,不是時間對象。
javascript時間戳精確到毫秒,起始時間從通用協調時間(UTC)的1970年1月1日零時零分零秒開始,這幾乎跟unix時間戳一致,不同的是
javascript時間戳是以毫秒來計算的,因此如果使用unix時間戳的話不要忘記乘以1000.

You can see a timestamp like this
通過下面的例子可以查看一個時間的時間戳:

? alert((new Date()).getTime())


Normally you want the timestamps to be displayed according to a
certain time zone, usually the time zone in which the data has been
produced. However, Flot always displays timestamps according to UTC.
It has to as the only alternative with core Javascript is to interpret
the timestamps according to the time zone that the visitor is in,
which means that the ticks will shift unpredictably with the time zone
and daylight savings of each visitor.

你可能希望時間戳根據某一時區(通常是產生數據的時區)來顯示,但是,flot總是根據UTC時區來顯示時間戳,
因此你只能在javascript代碼里設置根據用戶本地時區來解釋時間戳,這意味著UTC時間戳按不同時區轉換之后處于不同時區的用戶看到的時間將不一樣


So given that there's no good support for custom time zones in
Javascript, you'll have to take care of this server-side.

如果客戶端的javascript對時區的支持不是很好的話,就要在服務器端小心的處理好數據了

The easiest way to think about it is to pretend that the data
production time zone is UTC, even if it isn't. So if you have a
datapoint at 2002-02-20 08:00, you can generate a timestamp for eight
o'clock UTC even if it really happened eight o'clock UTC+0200.

最簡單的方法是,不管數據產生地的時區是哪里,都假定為UTC,也就是說,如果有一個數據點
在2002-02-20 08:00產生,就算是在UTC+0200 時區8時產生的,你也要按UTC時區8時產生時間戳。
(做數據文件里保存UTC時間戳,實際在客戶端顯示時通過程序指定時區--通常是數據產生地所在時區--進行轉換)

In PHP you can get an appropriate timestamp with
'strtotime("2002-02-20 UTC") * 1000', in Python with
'calendar.timegm(datetime_object.timetuple()) * 1000', in .NET with
something like:

下面服務器端生成恰當的時間戳方法:
在PHP程序中? strtotime("2002-02-20 UTC") * 1000
Python中? calendar.timegm(datetime_object.timetuple()) * 1000
在 .net中代碼如下:

? public static int GetJavascriptTimestamp(System.DateTime input)
? {
??? System.TimeSpan span = new System.TimeSpan(System.DateTime.Parse("1/1/1970").Ticks);
??? System.DateTime time = input.Subtract(span);
??? return (long)(time.Ticks / 10000);
? }


Javascript also has some support for parsing date strings, so it is
possible to generate the timestamps manually client-side.

javascript 也有一些對時間字符串進行解析的支持,因此在客戶端生成時間戳也是可能的。

If you've already got the real UTC timestamp, it's too late to use the
pretend trick described above. But you can fix up the timestamps by
adding the time zone offset, e.g. for UTC+0200 you would add 2 hours
to the UTC timestamp you got. Then it'll look right on the plot. Most
programming environments have some means of getting the timezone
offset for a specific date (note that you need to get the offset for
each individual timestamp to account for daylight savings).

如果你得到的時間數據已經是數據產生時對應時區的時間戳,使用上面的方法已經來不及了,
不過你可以通過增加時區偏移的方法修改時間戳。例如,你得到一個UTC+0200時區(比UTC時區快2小時)
的時間戳,那么你需要在這個時間戳上減去2小時(或者說加上UTC時間對本地區時間的時差-2小時),這樣在圖表上看起來時間就正確了,
很多編程環境都有專門用于計算時差的方法,需要注意的是,你需要為每個時間戳計算時差來解釋日光節約時間(歐美在夏天天亮較早的季節使用的一個時間計算法,
人為地把時間撥快一小時,促使人早起早睡,節約用電)

Once you've gotten the timestamps into the data and specified "time"
as the axis mode, Flot will automatically generate relevant ticks and
format them. As always, you can tweak the ticks via the "ticks" option
- just remember that the values should be timestamps (numbers), not
Date objects.

一旦你在數據里面使用時間戳并把數軸設置為時間模式,flot會自動格式化并生成時間數軸刻度。
你也可以通過"ticks"參數來自定義時間刻度,但是要注意的是,對應的參數值應該是時間戳數字而不是時間對象。

Tick generation and formatting can also be controlled separately
through the following axis options:

通過設置下面的數軸參數可以個別的控制時間軸刻度生成的格式:

? minTickSize: array
? timeformat: null or format string //null 或格式化字符串
? monthNames: null or array of size 12 of strings //null或一個長度為12的字符串數組
? twelveHourClock: boolean?? //12時模式

Here "timeformat" is a format string to use. You might use it like this:

timeformat的用法如下例:

? xaxis: {
??? mode: "time"
??? timeformat: "%y/%m/%d"
? }
?
This will result in tick labels like "2000/12/24". The following
specifiers are supported

這個例子產生的時間抽刻度標簽形如"2000/12/24" ,下面是flot支持的時間格式化字符串:

? %h: hours
? %H: hours (left-padded with a zero)
? %M: minutes (left-padded with a zero)
? %S: seconds (left-padded with a zero)
? %d: day of month (1-31)
? %m: month (1-12)
? %y: year (four digits)
? %b: month name (customizable)
? %p: am/pm, additionally switches %h/%H to 12 hour instead of 24
? %P: AM/PM (uppercase version of %p)

You can customize the month names with the "monthNames" option. For
instance, for Danish you might specify:

"monthNames" 參數自定義月份名稱的方法如下:

? monthNames: ["jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec"]

If you set "twelveHourClock" to true, the autogenerated timestamps
will use 12 hour AM/PM timestamps instead of 24 hour.
?
"twelveHourClock"設置為true,將使用12時AM/PM 格式的時間戳來替代24時時間戳。

The format string and month names are used by a very simple built-in
format function that takes a date object, a format string (and
optionally an array of month names) and returns the formatted string.
If needed, you can access it as $.plot.formatDate(date, formatstring,
monthNames) or even replace it with another more advanced function
from a date library if you're feeling adventurous.

格式化字符串和月份名稱經常用在格式化函數中,該函數可能使用時間對象,格式化字符串,月份名稱數組作為參數,
返回格式化了的字符串,如果需要,你可以使用flot提供的方法 $.plot.formatDate(date, formatstring,monthNames)
也可以自定義函數來替換該方法。

If everything else fails, you can control the formatting by specifying
a custom tick formatter function as usual. Here's a simple example
which will format December 24 as 24/12:

如果以上方法格式化不能達到你的要求,你可以定義一個函數來格式化并自定義刻度標簽。

? tickFormatter: function (val, axis) {
??? var d = new Date(val);
??? return d.getUTCDate() + "/" + (d.getUTCMonth() + 1);
? }


Note that for the time mode "tickSize" and "minTickSize" are a bit
special in that they are arrays on the form "[value, unit]" where unit
is one of "second", "minute", "hour", "day", "month" and "year". So
you can specify

請注意,時間軸的"tickSize" 和 "minTickSize"是一個數組,數組形如 [數值,單位],
單位可以是 "second", "minute", "hour", "day", "month" and "year" ,因此你可以這樣設置最小刻度為一個月:

? minTickSize: [1, "month"]

to get a tick interval size of at least 1 month and correspondingly,
if axis.tickSize is [2, "day"] in the tick formatter, the ticks have
been produced with two days in-between.

類似地,axis.tickSize設置為[2, "day"],則時間軸最小刻度為2天。

Customizing the data series
數據顯示定制
===========================

? series: {
??? lines, points, bars: {
????? show: boolean
????? lineWidth: number
????? fill: boolean or number
????? fillColor: null or color/gradient
??? }

??? points: {
????? radius: number
??? }

??? bars: {
????? barWidth: number
????? align: "left" or "center"
????? horizontal: boolean
??? }

??? lines: {
????? steps: boolean
??? }

??? shadowSize: number
? }
?
? colors: [ color1, color2, ... ]

The options inside "series: {}" are copied to each of the series. So
you can specify that all series should have bars by putting it in the
global options, or override it for individual series by specifying
bars in a particular the series object in the array of data.

"series: {}" 內的參數將對每一個數據序列生效,可以用來為圖表設置全局參數,
如果需要為特定數據序列的圖表設置不同屬性,可以在對應的數據序列對象里面設置相應的參數把全局參數覆蓋掉。
?
The most important options are "lines", "points" and "bars" that
specify whether and how lines, points and bars should be shown for
each data series. In case you don't specify anything at all, Flot will
default to showing lines (you can turn this off with
lines: { show: false}). You can specify the various types
independently of each other, and Flot will happily draw each of them
in turn (this is probably only useful for lines and points), e.g.

?"lines", "points" 和 "bars"是最重要的參數,這些參數設置每條數據序列的圖表的折線圖、散點圖、直方圖是否顯示和如何顯示。
如果沒有專門設置這三個參數中的任何一個,默認情況下將顯示折線圖,關閉折線圖的方法是lines: { show: false}
你可以分別設置這三種顯示方式,flot會一次把它們全部顯示出來(通常情況下折線圖和散點圖同時顯示比較有意義),如下例:

? var options = {
??? series: {
????? lines: { show: true, fill: true, fillColor: "rgba(255, 255, 255, 0.8)" },
????? points: { show: true, fill: false }
??? }
? };

"lineWidth" is the thickness of the line or outline in pixels. You can
set it to 0 to prevent a line or outline from being drawn; this will
also hide the shadow.

"lineWidth"用于設置折線圖線條的粗細或其他圖型的邊框,你可以把這個值設置成0來關閉折線圖的輸出
或關閉其他圖形的邊框及陰影效果(例如散點圖的鼠標點擊效果及直方圖的邊框效果)

"fill" is whether the shape should be filled. For lines, this produces
area graphs. You can use "fillColor" to specify the color of the fill.
If "fillColor" evaluates to false (default for everything except
points which are filled with white), the fill color is auto-set to the
color of the data series. You can adjust the opacity of the fill by
setting fill to a number between 0 (fully transparent) and 1 (fully
opaque).

"fill" 用于設置圖表填充的透明度(0-1),對于折線,填充范圍是折線與數軸圍成的區域
"fillColor" 設置填充顏色,如果填null,將使用線條顏色一致的顏色,如果顏色名解析失敗將使用默認顏色(折線圖直方圖黑色,散點圖白色)

For bars, fillColor can be a gradient, see the gradient documentation
below. "barWidth" is the width of the bars in units of the x axis (or
the y axis if "horizontal" is true), contrary to most other measures
that are specified in pixels. For instance, for time series the unit
is milliseconds so 24 * 60 * 60 * 1000 produces bars with the width of
a day. "align" specifies whether a bar should be left-aligned
(default) or centered on top of the value it represents. When
"horizontal" is on, the bars are drawn horizontally, i.e. from the y
axis instead of the x axis; note that the bar end points are still
defined in the same way so you'll probably want to swap the
coordinates if you've been plotting vertical bars first.

直方圖的填充顏色可以是漸變的,關于漸變的說明在后面會提及。
"barWidth" 用于設置直方圖的寬度,單位是數軸的單位而非像素。
例如,時間軸的單位是毫秒,因此,barWidth的值設置為24 * 60 * 60 * 1000 表示直方圖的寬度是一天時間的在時間軸上的長度。
"align" 用于設置數據點對應刻度線與直方圖之間的對齊關系,默認情況下,刻度線在直方圖的左側(left,靠近數軸最小值一側),
如果設置為center,刻度線在直方圖中間。

For lines, "steps" specifies whether two adjacent data points are
connected with a straight (possibly diagonal) line or with first a
horizontal and then a vertical line. Note that this transforms the
data by adding extra points.

對于折線圖,"steps"可以設置是否使用階梯狀折線,設置為true采用階梯狀折線,相鄰2個數據點之間先以水平線連接,
后然用垂直線連接,需要注意的是,這種模式會在同一垂直線上增加數據點來實現。

"shadowSize" is the default size of shadows in pixels. Set it to 0 to
remove shadows.

"shadowSize" 可以設置曲線陰影大小,設置為0關閉陰影效果。

The "colors" array specifies a default color theme to get colors for
the data series from. You can specify as many colors as you like, like
this:

"colors"可以預定義一系列顏色保存在數組里供曲線使用,你可以設置任意多種顏色。

? colors: ["#d18b2c", "#dba255", "#919733"]

If there are more data series than colors, Flot will try to generate
extra colors by lightening and darkening colors in the theme.

如果曲線的數目比預定義的顏色數目多,程序將嘗試通過改變顏色的明暗程度來生成其他顏色賦給曲線。

Customizing the grid
背景柵格定制
====================

? grid: {
??? show: boolean
??? aboveData: boolean
??? color: color
??? backgroundColor: color/gradient or null
??? tickColor: color
??? labelMargin: number
??? markings: array of markings or (fn: axes -> array of markings)
??? borderWidth: number
??? borderColor: color or null
??? clickable: boolean
??? hoverable: boolean
??? autoHighlight: boolean
??? mouseActiveRadius: number
? }

The grid is the thing with the axes and a number of ticks. "color" is
the color of the grid itself whereas "backgroundColor" specifies the
background color inside the grid area. The default value of null means
that the background is transparent. You can also set a gradient, see
the gradient documentation below.

grid由數軸和刻度線構成的柵格背景,"color"定義的是grid的顏色,包括刻度值標簽的顏色。
但是背景顏色是填充在Grid里面的,因此實際上只影響邊框和刻度值標簽的顏色。
背景顏色"backgroundColor"是填充在grid內部的,默認情況下背景是透明的,
可以為背景設置顏色漸變,具體細節后面會提到。

You can turn off the whole grid including tick labels by setting
"show" to false. "aboveData" determines whether the grid is drawn on
above the data or below (below is default).

如果grid的"show"參數設置為false,柵格背景包括數軸及數軸刻度標簽將被隱藏,
"aboveData" 用于設置柵格放置在數據點上面還是下面,默認情況false是放在數據點下面。
"aboveData"設置為true且設置了背景顏色,曲線將被grid的背景顏色遮蓋。

"tickColor" is the color of the ticks and "labelMargin" is the spacing
between tick labels and the grid. Note that you can style the tick
labels with CSS, e.g. to change the color. They have class "tickLabel".
"borderWidth" is the width of the border around the plot. Set it to 0
to disable the border. You can also set "borderColor" if you want the
border to have a different color than the grid lines.

"tickColor"?? 設置刻度線的顏色
"labelMargin" 設置刻度值標簽與網格的距離,
"borderWidth" 設置邊框寬度,設為0則取消邊框
"borderColor" 設置邊框顏色,
"tickLabel"?? 設置刻度值標簽的CSS樣式,(未實驗,設置方法不明)

"markings" is used to draw simple lines and rectangular areas in the
background of the plot. You can either specify an array of ranges on
the form { xaxis: { from, to }, yaxis: { from, to } } (secondary axis
coordinates with x2axis/y2axis) or with a function that returns such
an array given the axes for the plot in an object as the first
parameter.

You can set the color of markings by specifying "color" in the ranges
object. Here's an example array:

"markings" 用于在背景上繪畫出一塊矩形,矩形的位置及長寬通過縱橫軸的起始終止坐標來確定,
第一橫軸與第一縱軸對應,第二橫軸與第二縱軸對應,color參數可以設置畫出區塊的顏色,
賦值方式是一個數組,每個數組元素是一個json數據格式,每個數組元素繪制一個區塊。可以用函數返回數組來賦值。
下面是個簡單例子:

? markings: [ { xaxis: { from: 0, to: 2 }, yaxis: { from: 10, to: 10 }, color: "#bb0000" }, ... ]

If you leave out one of the values, that value is assumed to go to the
border of the plot. So for example if you only specify { xaxis: {
from: 0, to: 2 } } it means an area that extends from the top to the
bottom of the plot in the x range 0-2.

A line is drawn if from and to are the same, e.g.

? markings: [ { yaxis: { from: 1, to: 1 } }, ... ]

would draw a line parallel to the x axis at y = 1. You can control the
line width with "lineWidth" in the range object.


如果只設置一個數軸的數據范圍,則缺省數軸的數據范圍默認為[min,max],
如果數軸起止值相等,則畫出一條線,并且可以使用"lineWidth"設定線段的大小。

An example function might look like this:

? markings: function (axes) {
??? var markings = [];
??? for (var x = Math.floor(axes.xaxis.min); x < axes.xaxis.max; x += 2)
????? markings.push({ xaxis: { from: x, to: x + 1 } });
??? return markings;
? }


If you set "clickable" to true, the plot will listen for click events
on the plot area and fire a "plotclick" event on the placeholder with
a position and a nearby data item object as parameters. The coordinates
are available both in the unit of the axes (not in pixels) and in
global screen coordinates.

"clickable" 設置為true時,圖表將監聽鼠標單擊事件,單擊圖表時將觸發"plotclick"事件,
回調函數的參數是鼠標坐標和數據點的坐標值,即以像素為單位的位置坐標及以數軸為單位的數據坐標。
如果鼠標點擊位置沒有數據點,則數據點的參數值是null,反之,是一個json對象

Likewise, if you set "hoverable" to true, the plot will listen for
mouse move events on the plot area and fire a "plothover" event with
the same parameters as the "plotclick" event. If "autoHighlight" is
true (the default), nearby data items are highlighted automatically.
If needed, you can disable highlighting and control it yourself with
the highlight/unhighlight plot methods described elsewhere.

同樣地,"hoverable" 設置為true將監聽鼠標移動事件,鼠標移動到某個位置時發生"plothover"事件,
回調函數的參數與"clickable"一致,
"autoHighlight"的值為true,則發生"hoverable"事件和"plotclick"事件時,數據點顯示高亮效果,
數據點高亮的發生及消失對應有highlight/unhighlight方法,這在后面會描述。

You can use "plotclick" and "plothover" events like this:

"plotclick" 和 "plothover" 事件用法如下:

??? $.plot($("#placeholder"), [ d ], { grid: { clickable: true } });

??? $("#placeholder").bind("plotclick", function (event, pos, item) {
??????? alert("You clicked at " + pos.x + ", " + pos.y);?????????????????
??????? // secondary axis coordinates if present are in pos.x2, pos.y2,???????? //pos.x pos.y 數軸坐標值,pos.x2, pos.y2 第二對數軸的坐標值
??????? // if you need global screen coordinates, they are pos.pageX, pos.pageY //pos.pageX, pos.pageY 屏幕坐標值

??????? if (item) {??? //item !=null ,點擊了數據點
????????? highlight(item.series, item.datapoint);? // item.datapoint 該數據點的縱橫坐標值,是一對以逗號分割的數值 如: 3.5,2.14 表示該點X軸的值為3.5,Y軸的值為2.14
????????? alert("You clicked a point!");?????????? //注意,item.datapoint的值不一定與 pos.x pos.y的值相等,因為點擊在數據點附近,數據點也激活了
??????? }
??? });

The item object in this example is either null or a nearby object on the form:

? item: {?? //item參數的屬性
????? datapoint: the point, e.g. [0, 2]
????? dataIndex: the index of the point in the data array? //該點數據在對應數列數組里的下標
????? series: the series object //曲線對象
????? seriesIndex: the index of the series? //在多曲線體系中該曲線的下標,即第幾條曲線,編號從0開始
????? pageX, pageY: the global screen coordinates of the point? //該點屏幕坐標,單位是像素
? }

For instance, if you have specified the data like this
? 下面是一條曲線的定義,

??? $.plot($("#placeholder"), [ { label: "Foo", data: [[0, 10], [7, 3]] } ], ...);

and the mouse is near the point (7, 3), "datapoint" is [7, 3],
"dataIndex" will be 1, "series" is a normalized series object with
among other things the "Foo" label in series.label and the color in
series.color, and "seriesIndex" is 0. Note that plugins and options
that transform the data can shift the indexes from what you specified
in the original data array.

鼠標的(7,3)坐標附近觸發事件時,"datapoint" 的值是[7,3],

item.datapoint=="7,3"
item.dataIndex ==1
item.seriesIndex == 0?
item.series 曲線對象,
item.series.label =="Foo" 曲線名稱
item.series.color 曲線顏色,rgb格式


If you use the above events to update some other information and want
to clear out that info in case the mouse goes away, you'll probably
also need to listen to "mouseout" events on the placeholder div.

如果你在以上事件觸發時修改數據點的一些值,鼠標移開時想復原這些值,你很可能就需要在占位符上監聽鼠標移開事件

"mouseActiveRadius" specifies how far the mouse can be from an item
and still activate it. If there are two or more points within this
radius, Flot chooses the closest item. For bars, the top-most bar
(from the latest specified data series) is chosen.

"mouseActiveRadius" 用來設置可以激活數據點的鼠標與數據點之間的距離,如果在符合距離內有多個數據點,flot會激活最近的數據點
對于直方圖,則激活最遲設置的直方圖。

If you want to disable interactivity for a specific data series, you
can set "hoverable" and "clickable" to false in the options for that
series, like this { data: [...], label: "Foo", clickable: false }.

在某條曲線數據本身設置"hoverable" 和 "clickable" 為false則該曲線不會觸發事件
但options內設置為false時,不能在某條曲線內通過設置true來開啟事件監聽功能

Specifying gradients
定義變化模式
====================

A gradient is specified like this:
曲線顏色預定義:

? { colors: [ color1, color2, ... ] }

For instance, you might specify a background on the grid going from
black to gray like this:
圖表柵格背景顏色漸變:

? grid: {
??? backgroundColor: { colors: ["#000", "#999"] }
? }

For the series you can specify the gradient as an object that
specifies the scaling of the brightness and the opacity of the series
color, e.g.

曲線顏色明暗程度及透明度漸變設置,包括開始狀態和結束狀態的數據(實驗不成功):

? { colors: [{ opacity: 0.8 }, { brightness: 0.6, opacity: 0.8 } ] }

where the first color simply has its alpha scaled, whereas the second
is also darkened. For instance, for bars the following makes the bars
gradually disappear, without outline:

如下例,第一條直方圖明度正常,但是后面的逐漸變暗,最后消失:

? bars: {
????? show: true,
????? lineWidth: 0,
????? fill: true,
????? fillColor: { colors: [ { opacity: 0.8 }, { opacity: 0.1 } ] }
? }
?
Flot currently only supports vertical gradients drawn from top to
bottom because that's what works with IE.

flot目前只支持從圖表top到bottom的垂直漸變,因為IE只能這樣實現漸變


Plot Methods
方法
------------

The Plot object returned from the plot function has some methods you
can call:

plot函數返回的對象有下面一些方法可供調用:

? - highlight(series, datapoint)? //激活數據點 series:曲線編號,datapoint:數據點在曲線數據序列中的編號,編號都是從0開始 例如:highlight(1, 1) 激活第二條曲線的第二個數據點
????????????????????????????????? //datapoint 也可以是一個數據點的真實數據對象,是一個數組, 例如: highlight(1, [3,6]) 激活第二條曲線上坐標為[3,6]的點
????????????????????????????????? //如果指定坐標的數據點不在該曲線上,仍然以該曲線的顏色顯示要激活的數據點

??? Highlight a specific datapoint in the data series. You can either
??? specify the actual objects, e.g. if you got them from a
??? "plotclick" event, or you can specify the indices, e.g.
??? highlight(1, 3) to highlight the fourth point in the second series
??? (remember, zero-based indexing).

?
? - unhighlight(series, datapoint) or unhighlight() //取消數據點的激活效果,參數與highlight相同

??? Remove the highlighting of the point, same parameters as
??? highlight.

??? If you call unhighlight with no parameters, e.g. as
??? plot.unhighlight(), all current highlights are removed.? //如果unhighlight()沒有設置參數,取消所有數據點的激活狀態


? - setData(data)

??? You can use this to reset the data used. Note that axis scaling,
??? ticks, legend etc. will not be recomputed (use setupGrid() to do
??? that). You'll probably want to call draw() afterwards.

??? 重新設置曲線數據,參數data是plot(placeholder, data, options)中的data參數,可以不包含options的設置內容。
??? 重新設置數據后,如果需要立即改變圖表顯示,請調用draw()方法來重新繪制圖表
??? 請注意,setData()方法并不會重新設置數軸的縮放比例、刻度、曲線名稱等,如果需要修改這些屬性,請使用setupGrid()方法,

??? You can use this function to speed up redrawing a small plot if
??? you know that the axes won't change. Put in the new data with
??? setData(newdata), call draw(), and you're good to go. Note that
??? for large datasets, almost all the time is consumed in draw()
??? plotting the data so in this case don't bother.

??? 如果你預先知道重新設置數據后數軸不需要改變,可以用setData(data)來設置數據然后調用draw()快速重繪曲線
??? 如果數據量比較大,draw()方法可能會消耗較長時間,因此可能會有一點延遲,請不必感到疑惑。

???
? - setupGrid()

??? Recalculate and set axis scaling, ticks, legend etc.
??
?? 修改數軸、刻度、曲線名稱等,參數是 options 不包括data部分

??? Note that because of the drawing model of the canvas, this
??? function will immediately redraw (actually reinsert in the DOM)
??? the labels and the legend, but not the actual tick lines because
??? they're drawn on the canvas. You need to call draw() to get the
??? canvas redrawn.
???
??? 請注意,該方法不會重繪曲線就立即修改刻度標簽及曲線名稱,因為這些屬性是以DOM節點的形式來實現的
??? 在canvas標簽內實現的屬性,比如刻度線,你需要調用draw()方法來重繪在canvas標簽內實現的屬性。
??? 應該注意,如果原來圖表上沒有的數軸,在setupGrid()設置之后出現該數軸,那么 該數軸會疊在Grid上,


? - draw()

??? Redraws the plot canvas.? //重繪圖表的canvas

? - triggerRedrawOverlay()

??? Schedules an update of an overlay canvas used for drawing
??? interactive things like a selection and point highlights. This
??? is mostly useful for writing plugins. The redraw doesn't happen
??? immediately, instead a timer is set to catch multiple successive
??? redraws (e.g. from a mousemove).

??? 添加一個覆蓋在圖標上的canvas,這個方法對圖表插件的開發非常有用,特別是一些動態的交互性的設置
??? 比如彈出一個下拉菜單或增加一個亮點。
??? 這個方法不會立即繪制設置的canvas內容,繪制的時機可以通過設置延時或鼠標事件來觸發。

? - width()/height()

??? Gets the width and height of the plotting area inside the grid.
??? This is smaller than the canvas or placeholder dimensions as some
??? extra space is needed (e.g. for labels).

??? 獲取圖表柵格的寬和高,寬高值會比canvas和占位符的尺寸小。

? - offset()

??? Returns the offset of the plotting area inside the grid relative
??? to the document, useful for instance for calculating mouse
??? positions (event.pageX/Y minus this offset is the pixel position
??? inside the plot).
??
?? 獲取圖表的繪制區相對文檔的坐標,鼠標事件觸發獲取的文檔坐標減去該坐標將得到當前位置相對于繪圖區的位置偏移。
?? offset().left , offset().top 獲取左偏移和頂部偏移
???

? - pointOffset({ x: xpos, y: ypos })

??? Returns the calculated offset of the data point at (x, y) in data
??? space within the placeholder div. If you are working with dual axes, you
??? can specify the x and y axis references, e.g.

?? 獲取某個數據點位置相對于占位符的偏移。注意,不是相對canvas,而是相對于DIV
?? 可以為數據點的值注明采用的數軸,默認采用第一坐標系。
?? pointOffset({ x: 3, y: 3.5 }).left? pointOffset({ x: 3, y: 3.5 }).top? 分別是數據點(3,3.5)位置相對于容器DIV的偏移
???
????? o = pointOffset({ x: xpos, y: ypos, xaxis: 2, yaxis: 2 })
????? // o.left and o.top now contains the offset within the div
?

There are also some members that let you peek inside the internal
workings of Flot which is useful in some cases. Note that if you change
something in the objects returned, you're changing the objects used by
Flot to keep track of its state, so be careful.

? 下面是一些獲取圖表相關屬性的方法,

? - getData()

??? Returns an array of the data series currently used in normalized
??? form with missing settings filled in according to the global
??? options. So for instance to find out what color Flot has assigned
??? to the data series, you could do this:

??? 獲取plot(placeholder, data, options) 函數的data 和 options 合成的數據,
??? getData() 并非僅僅返回函數的 data 參數,他是一個數組,里面的信息包含了這個曲線的信息,
??? 包括options,每一條曲線的每一個參數設置、包括默認設置的值及格式函數
??? 注意與setData()的參數區別,oo.setData(data), 則 data!= oo.getData()

????? var series = plot.getData();
????? for (var i = 0; i < series.length; ++i)
??????? alert(series[i].color);?? //逐個彈出曲線的顏色

??? A notable other interesting field besides color is datapoints
??? which has a field "points" with the normalized data points in a
??? flat array (the field "pointsize" is the increment in the flat
??? array to get to the next point so for a dataset consisting only of
??? (x,y) pairs it would be 2).

? - getAxes()

??? Gets an object with the axes settings as { xaxis, yaxis, x2axis,
??? y2axis }.

??? 該方法返回數軸信息的json對象,該對象有四個成員,分別為xaxis, yaxis, x2axis, y2axis 四條數軸

??? Various things are stuffed inside an axis object, e.g. you could
??? use getAxes().xaxis.ticks to find out what the ticks are for the
??? xaxis. Two other useful attributes are p2c and c2p, functions for
??? transforming from data point space to the canvas plot space and
??? back. Both returns values that are offset with the plot offset.
???
??? 數軸內部包含了各種信息(具體信息可以把json對象轉化成字符串細看,這里不細述,本文后面有將json對象系列化成字符串的方法)
??? 例如獲取X軸第一個刻度標簽: getAxes().xaxis.ticks[0].label
??? 【c2p p2c兩個函數是用于計算并返回數據點與數軸直接的偏移量(包含曲線偏移量)】 看不太明白,待證實

?
? - getPlaceholder()

??? Returns placeholder that the plot was put into. This can be useful
??? for plugins for adding DOM elements or firing events.
???
??? 獲取圖表容器div,返回的是一個json對象
??? getPlaceholder().selector 返回該容器的jQuery選擇器,即 '#' + id

? - getCanvas()

??? Returns the canvas used for drawing in case you need to hack on it
??? yourself. You'll probably need to get the plot offset too.
?
?? 獲取繪制區canvas,返回的是一個json對象

?
? - getPlotOffset()

??? Gets the offset that the grid has within the canvas as an object
??? with distances from the canvas edges as "left", "right", "top",
??? "bottom". I.e., if you draw a circle on the canvas with the center
??? placed at (left, top), its center will be at the top-most, left
??? corner of the grid.

?? 獲取柵格邊緣與canvas邊緣之間的距離,有數軸的一邊間隔會大一些,因為需要縮小柵格防止數軸疊加在柵格上。
?? 該方法返回一個json對象,形如 {left:36,right:6,top:6,bottom:20}

? - getOptions()

??? Gets the options for the plot, in a normalized format with default
??? values filled in.

??? 獲取繪制函數的options參數,返回的是一個json對象
???

Hooks
事件鉤子
====================================================

In addition to the public methods, the Plot object also has some hooks
that can be used to modify the plotting process. You can install a
callback function at various points in the process, the function then
gets access to the internal data structures in Flot.

除了各種方法,flot還提供一些事件鉤子,你可以在圖表繪制過程中為事件鉤子設置回調函數以
修改圖表繪制過程,這些回調函數具備使用flot內部數據結構的權限。

Here's an overview of the phases Flot goes through:
下面是flot繪圖的步驟:

? 1. Plugin initialization, parsing options? //初始化引入的插件(如果有的話)設置,解析options的參數設置
?
? 2. Constructing the canvases used for drawing //創建canvas標簽

? 3. Set data: parsing data specification, calculating colors,???
???? copying raw data points into internal format,
???? normalizing them, finding max/min for axis auto-scaling

??????? //設置數據:解析數據設定,確定曲線顏色,把原始數據點的數據格式化成曲線所用格式,確定數軸的長度及縮放比例

? 4. Grid setup: calculating axis spacing, ticks, inserting tick
???? labels, the legend
?????? //柵格設定:計算數軸刻度及刻度標簽,設置曲線名稱

? 5. Draw: drawing the grid, drawing each of the series in turn
????? //畫圖:畫出柵格及曲線

? 6. Setting up event handling for interactive features
???? //設置用于交互的監聽事件函數

? 7. Responding to events, if any
???? //如果存在的話,觸發事件

Each hook is simply a function which is put in the appropriate array.
You can add them through the "hooks" option, and they are also available
after the plot is constructed as the "hooks" attribute on the returned
plot object, e.g.

事件鉤子是一些函數,這些函數被保存在一個數組里面,你可以通過指定事件鉤子數組的下標來添加和調用它們,
這些事件鉤子作為圖表"hooks"的屬性在圖表構造完畢后仍可以調用。

? // define a simple draw hook
? function hellohook(plot, canvascontext) { alert("hello!"); };

? // pass it in, in an array since we might want to specify several
? var plot = $.plot(placeholder, data, { hooks: { draw: [hellohook] } });

? // we can now find it again in plot.hooks.draw[0] unless a plugin
? // has added other hooks

The available hooks are described below. All hook callbacks get the
plot object as first parameter. You can find some examples of defined
hooks in the plugins bundled with Flot.

?事件鉤子函數的第一個參數是圖表對象

?- processOptions? [phase 1]

?? function(plot, options)
??
?? Called after Flot has parsed and merged options. Useful in the
?? instance where customizations beyond simple merging of default
?? values is needed. A plugin might use it to detect that it has been
?? enabled and then turn on or off other options.
??
?? processOptions發生在步驟1,圖表函數中產地options參數之后開始調用的函數,常用來修改options內的參數值
?
?- processRawData? [phase 3]

?? function(plot, series, data, datapoints)
?
?? Called before Flot copies and normalizes the raw data for the given
?? series. If the function fills in datapoints.points with normalized
?? points and sets datapoints.pointsize to the size of the points,
?? Flot will skip the copying/normalization step for this series.
??
?? processRawData發生在步驟3,曲線原始數據實例化之前調用,如果函數中的datapoints不為空,
??

??
?? In any case, you might be interested in setting datapoints.format,
?? an array of objects for specifying how a point is normalized and
?? how it interferes with axis scaling.

?? The default format array for points is something along the lines of:

???? [
?????? { x: true, number: true, required: true },
?????? { y: true, number: true, required: true }
???? ]

?? The first object means that for the first coordinate it should be
?? taken into account when scaling the x axis, that it must be a
?? number, and that it is required - so if it is null or cannot be
?? converted to a number, the whole point will be zeroed out with
?? nulls. Beyond these you can also specify "defaultValue", a value to
?? use if the coordinate is null. This is for instance handy for bars
?? where one can omit the third coordinate (the bottom of the bar)
?? which then defaults to 0.


?- processDatapoints? [phase 3]

?? function(plot, series, datapoints)
?
?? Called after normalization of the given series but before finding
?? min/max of the data points. This hook is useful for implementing data
?? transformations. "datapoints" contains the normalized data points in
?? a flat array as datapoints.points with the size of a single point
?? given in datapoints.pointsize. Here's a simple transform that
?? multiplies all y coordinates by 2:

???? function multiply(plot, series, datapoints) {
???????? var points = datapoints.points, ps = datapoints.pointsize;
???????? for (var i = 0; i < points.length; i += ps)
???????????? points[i + 1] *= 2;
???? }

?? Note that you must leave datapoints in a good condition as Flot
?? doesn't check it or do any normalization on it afterwards.


?- draw? [phase 5]

?? function(plot, canvascontext)
?
?? Hook for drawing on the canvas. Called after the grid is drawn
?? (unless it's disabled) and the series have been plotted (in case
?? any points, lines or bars have been turned on). For examples of how
?? to draw things, look at the source code.
??
?
?- bindEvents? [phase 6]

?? function(plot, eventHolder)

?? Called after Flot has setup its event handlers. Should set any
?? necessary event handlers on eventHolder, a jQuery object with the
?? canvas, e.g.

???? function (plot, eventHolder) {
???????? eventHolder.mousedown(function (e) {
???????????? alert("You pressed the mouse at " + e.pageX + " " + e.pageY);
???????? });
???? }

?? Interesting events include click, mousemove, mouseup/down. You can
?? use all jQuery events. Usually, the event handlers will update the
?? state by drawing something (add a drawOverlay hook and call
?? triggerRedrawOverlay) or firing an externally visible event for
?? user code. See the crosshair plugin for an example.
????
?? Currently, eventHolder actually contains both the static canvas
?? used for the plot itself and the overlay canvas used for
?? interactive features because some versions of IE get the stacking
?? order wrong. The hook only gets one event, though (either for the
?? overlay or for the static canvas).


?- drawOverlay? [phase 7]

?? function (plot, canvascontext)

?? The drawOverlay hook is used for interactive things that need a
?? canvas to draw on. The model currently used by Flot works the way
?? that an extra overlay canvas is positioned on top of the static
?? canvas. This overlay is cleared and then completely redrawn
?? whenever something interesting happens. This hook is called when
?? the overlay canvas is to be redrawn.

?? "canvascontext" is the 2D context of the overlay canvas. You can
?? use this to draw things. You'll most likely need some of the
?? metrics computed by Flot, e.g. plot.width()/plot.height(). See the
?? crosshair plugin for an example.


??
Plugins
插件
-------

Plugins extend the functionality of Flot. To use a plugin, simply
include its Javascript file after Flot in the HTML page.

If you're worried about download size/latency, you can concatenate all
the plugins you use, and Flot itself for that matter, into one big file
(make sure you get the order right), then optionally run it through a
Javascript minifier such as YUI Compressor.

Here's a brief explanation of how the plugin plumbings work:

Each plugin registers itself in the global array $.plot.plugins. When
you make a new plot object with $.plot, Flot goes through this array
calling the "init" function of each plugin and merging default options
from its "option" attribute. The init function gets a reference to the
plot object created and uses this to register hooks and add new public
methods if needed.

See the PLUGINS.txt file for details on how to write a plugin. As the
above description hints, it's actually pretty easy.


//========補充================

關于框選
數軸開啟選擇模式后,可綁定選擇事件
?$("#placeholder").bind("plotselected", function (event, ranges){ //doSomething??? })

其中ranges參數記錄了選擇曲線的區域,是一個json 對象,內容是各個數軸的選中區域起止點的值,形如:

{
"xaxis":{"from":2.286764705882353,"to":2.801470588235294},
"yaxis":{"from":0.6259124644481346,"to":7.250000055689011},
"y2axis":{"from":0.8345499525975129,"to":9.66666674091868}
}

?plot.setSelection(ranges,true) 方法,按ranges指定范圍設置選中區域,
??????????????? 如果沒有忽略true參數,曲線不重繪,只把選中區域顏色加深,曲線重繪并不會增加數據點,除非刷新使用的數據項

========================把json對象轉化成字符串==================================
<script type="text/javascript">

var JsonStr = function(JsonStrObj){
??? this.objType = (typeof JsonStrObj);
??? this.self = [];
??? (function(s,o){for(var i in o){o.hasOwnProperty(i)&&(s[i]=o[i],s.self[i]=o[i])};})(this,(this.objType=='string')?eval('0,'+JsonStrObj):JsonStrObj);
}
JsonStr.prototype = {
??? toString:function(){
??????? return this.getString();
??? },
??? valueOf:function(){
??????? return this.getString();
??? },
??? getString:function(){
??????? var sA = [];
??????? (function(o){
??????????? var oo = null;
??????????? sA.push('{');
??????????? for(var i in o){
??????????????? if(o.hasOwnProperty(i) && i!='prototype'){
??????????????????? oo = o[i];
??????????????????? if(oo instanceof Array){
??????????????????????? sA.push(i+':[');
??????????????????????? for(var b in oo){
??????????????????????????? if(oo.hasOwnProperty(b) && b!='prototype'){
??????????????????????????????? sA.push(oo[b]+',');
??????????????????????????????? if(typeof oo[b]=='object') arguments.callee(oo[b]);
??????????????????????????? }
??????????????????????? }
??????????????????????? sA.push('],');
??????????????????????? continue;
??????????????????? }else{
??????????????????????? sA.push(i+':'+oo+',');
??????????????????? }
??????????????????? if(typeof oo=='object') arguments.callee(oo);
??????????????? }
??????????? }
??????????? sA.push('},');
??????? })(this.self);
??????? return sA.slice(0).join('').replace(/\[object object\],/ig,'').replace(/,\}/g,'}').replace(/,\]/g,']').slice(0,-1);
??? },
??? push:function(sName,sValue){
??????? this.self[sName] = sValue;
??????? this[sName] = sValue;
??? }
}

//用法
var jsonStr = new JsonStr(JsonObj);? //JsonObj 是一個json對象
alert(jsonStr);?

</script>

圖片:

轉載于:https://www.cnblogs.com/JerryWang1991/articles/2110110.html

總結

以上是生活随笔為你收集整理的flot中文API(转载)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

欧美老妇与禽交 | 亚洲中文无码av永久不收费 | 女人被男人爽到呻吟的视频 | 欧美一区二区三区视频在线观看 | 在线观看免费人成视频 | 丁香啪啪综合成人亚洲 | 综合激情五月综合激情五月激情1 | 亚洲成a人一区二区三区 | 亚洲国产精品成人久久蜜臀 | 亚洲人成影院在线无码按摩店 | 国产精品丝袜黑色高跟鞋 | 少妇太爽了在线观看 | 精品人妻人人做人人爽夜夜爽 | 国内揄拍国内精品少妇国语 | 蜜桃av抽搐高潮一区二区 | 久久久久久av无码免费看大片 | 国产午夜亚洲精品不卡 | 性生交片免费无码看人 | 丰满少妇熟乱xxxxx视频 | 18无码粉嫩小泬无套在线观看 | 精品久久久无码人妻字幂 | 国产三级久久久精品麻豆三级 | 麻豆精产国品 | 九九在线中文字幕无码 | 欧美日韩一区二区综合 | 亚洲精品成人av在线 | 久久无码中文字幕免费影院蜜桃 | 成人动漫在线观看 | 国产精品久久久一区二区三区 | 俺去俺来也在线www色官网 | 日韩欧美成人免费观看 | 亚洲一区二区三区在线观看网站 | 欧美日韩人成综合在线播放 | 丁香花在线影院观看在线播放 | 丝袜美腿亚洲一区二区 | 国产亚洲精品久久久久久久 | 老太婆性杂交欧美肥老太 | 无码人中文字幕 | 天堂а√在线地址中文在线 | 国产亚洲视频中文字幕97精品 | 欧美人与动性行为视频 | 久久综合狠狠综合久久综合88 | 亚洲成在人网站无码天堂 | 色欲综合久久中文字幕网 | 亚洲午夜久久久影院 | 中文字幕无码日韩专区 | 精品久久久久久亚洲精品 | 在线а√天堂中文官网 | 国产特级毛片aaaaaaa高清 | 午夜福利一区二区三区在线观看 | 久久人人97超碰a片精品 | 国语自产偷拍精品视频偷 | 国产精品爱久久久久久久 | 又粗又大又硬又长又爽 | 奇米影视7777久久精品人人爽 | 无码一区二区三区在线 | 亚洲男人av天堂午夜在 | 久久综合激激的五月天 | 在线 国产 欧美 亚洲 天堂 | 狠狠亚洲超碰狼人久久 | 久久精品一区二区三区四区 | 中文字幕色婷婷在线视频 | 4hu四虎永久在线观看 | 女人被爽到呻吟gif动态图视看 | 久久99国产综合精品 | 午夜嘿嘿嘿影院 | 老司机亚洲精品影院无码 | 国产成人精品优优av | 少妇太爽了在线观看 | 亚洲无人区午夜福利码高清完整版 | 欧美高清在线精品一区 | 久久综合九色综合欧美狠狠 | 国产无套内射久久久国产 | 亚洲成在人网站无码天堂 | 色婷婷av一区二区三区之红樱桃 | 精品水蜜桃久久久久久久 | 强伦人妻一区二区三区视频18 | 无套内谢的新婚少妇国语播放 | 国产av一区二区精品久久凹凸 | 小泽玛莉亚一区二区视频在线 | 久青草影院在线观看国产 | 国产疯狂伦交大片 | 蜜臀av无码人妻精品 | √8天堂资源地址中文在线 | 大乳丰满人妻中文字幕日本 | 九月婷婷人人澡人人添人人爽 | 成年美女黄网站色大免费视频 | 中文字幕乱码人妻无码久久 | 国产精品va在线观看无码 | 婷婷色婷婷开心五月四房播播 | 鲁鲁鲁爽爽爽在线视频观看 | 亚洲中文字幕无码中文字在线 | а√资源新版在线天堂 | 精品国偷自产在线视频 | 午夜精品久久久久久久久 | 男人的天堂av网站 | 欧美zoozzooz性欧美 | 丰满岳乱妇在线观看中字无码 | 高潮毛片无遮挡高清免费 | 撕开奶罩揉吮奶头视频 | 在线观看免费人成视频 | 国产绳艺sm调教室论坛 | 色婷婷av一区二区三区之红樱桃 | 亚洲日韩乱码中文无码蜜桃臀网站 | 秋霞成人午夜鲁丝一区二区三区 | 狠狠色噜噜狠狠狠7777奇米 | 欧美人与善在线com | 亚洲国产欧美日韩精品一区二区三区 | 色狠狠av一区二区三区 | 欧美国产日产一区二区 | 大乳丰满人妻中文字幕日本 | 日本精品人妻无码77777 天堂一区人妻无码 | 亚洲欧洲日本无在线码 | 国产9 9在线 | 中文 | 十八禁视频网站在线观看 | 国内精品久久毛片一区二区 | 精品国产乱码久久久久乱码 | 精品少妇爆乳无码av无码专区 | 日本在线高清不卡免费播放 | 久久人人爽人人爽人人片ⅴ | 久久99久久99精品中文字幕 | 曰本女人与公拘交酡免费视频 | 成人影院yy111111在线观看 | 久久精品国产日本波多野结衣 | 久久久精品欧美一区二区免费 | 国产激情综合五月久久 | 欧美 日韩 人妻 高清 中文 | 久久国语露脸国产精品电影 | 国产又粗又硬又大爽黄老大爷视 | 最新国产乱人伦偷精品免费网站 | 国产精品美女久久久 | 亚洲性无码av中文字幕 | 亚洲午夜久久久影院 | 疯狂三人交性欧美 | 日本乱偷人妻中文字幕 | 精品国产乱码久久久久乱码 | 午夜无码区在线观看 | 爱做久久久久久 | 国产一区二区三区四区五区加勒比 | 久久久久久九九精品久 | 在线播放无码字幕亚洲 | 色综合视频一区二区三区 | 成人免费视频视频在线观看 免费 | 日本熟妇大屁股人妻 | 一区二区三区乱码在线 | 欧洲 | 亚洲中文字幕在线无码一区二区 | 色婷婷av一区二区三区之红樱桃 | 成人一在线视频日韩国产 | 国产美女精品一区二区三区 | 国内精品久久毛片一区二区 | 99久久亚洲精品无码毛片 | 亚洲国产欧美国产综合一区 | 色综合视频一区二区三区 | 99久久久无码国产aaa精品 | 三级4级全黄60分钟 | 精品欧美一区二区三区久久久 | 中文无码成人免费视频在线观看 | 99久久精品无码一区二区毛片 | 国产精品永久免费视频 | 人妻少妇精品久久 | 久久99精品久久久久久 | 国产人妖乱国产精品人妖 | 少妇久久久久久人妻无码 | 精品国偷自产在线视频 | 精品无码国产一区二区三区av | 免费无码肉片在线观看 | 激情亚洲一区国产精品 | 激情亚洲一区国产精品 | 大肉大捧一进一出视频出来呀 | 亚洲乱亚洲乱妇50p | 亚洲精品国产精品乱码视色 | 天天综合网天天综合色 | 国产精品久久久久无码av色戒 | 美女张开腿让人桶 | 性生交片免费无码看人 | 久久人人爽人人爽人人片av高清 | 亚洲精品成人av在线 | 国产精品多人p群无码 | 亚洲综合另类小说色区 | 国产真实夫妇视频 | 国内精品久久毛片一区二区 | 国产av人人夜夜澡人人爽麻豆 | 最新国产乱人伦偷精品免费网站 | 国产综合色产在线精品 | 婷婷丁香六月激情综合啪 | 日韩精品a片一区二区三区妖精 | 国产农村妇女高潮大叫 | 亚洲の无码国产の无码步美 | 免费无码一区二区三区蜜桃大 | 亚洲国产日韩a在线播放 | 久久久无码中文字幕久... | 免费人成网站视频在线观看 | 成人试看120秒体验区 | 大肉大捧一进一出视频出来呀 | 亚洲欧美日韩国产精品一区二区 | 玩弄人妻少妇500系列视频 | 亚洲熟妇色xxxxx欧美老妇y | 欧美日韩色另类综合 | 亚洲а∨天堂久久精品2021 | 欧美xxxxx精品 | 大乳丰满人妻中文字幕日本 | 亚洲人成人无码网www国产 | 好屌草这里只有精品 | 色欲人妻aaaaaaa无码 | 国产乱人无码伦av在线a | 少妇被黑人到高潮喷出白浆 | 欧美国产亚洲日韩在线二区 | 一本无码人妻在中文字幕免费 | 黄网在线观看免费网站 | 露脸叫床粗话东北少妇 | 欧美怡红院免费全部视频 | 久久国产精品二国产精品 | 伊在人天堂亚洲香蕉精品区 | 亚洲爆乳精品无码一区二区三区 | 国产精品18久久久久久麻辣 | 一本久道高清无码视频 | 日日天干夜夜狠狠爱 | 最新版天堂资源中文官网 | 中文字幕精品av一区二区五区 | 国产成人无码一二三区视频 | 丰满少妇高潮惨叫视频 | 伊人久久大香线蕉亚洲 | 精品亚洲成av人在线观看 | 久久久久se色偷偷亚洲精品av | 国产香蕉尹人综合在线观看 | 蜜桃臀无码内射一区二区三区 | 亚洲国产一区二区三区在线观看 | 人妻无码αv中文字幕久久琪琪布 | 精品国产一区二区三区四区 | 国产九九九九九九九a片 | 日韩 欧美 动漫 国产 制服 | 成人性做爰aaa片免费看 | 国产成人无码区免费内射一片色欲 | 少妇高潮一区二区三区99 | 香港三级日本三级妇三级 | 欧美人妻一区二区三区 | 色一情一乱一伦 | 国产99久久精品一区二区 | 天天摸天天透天天添 | 国产特级毛片aaaaaa高潮流水 | 十八禁视频网站在线观看 | 99麻豆久久久国产精品免费 | 国产三级精品三级男人的天堂 | 亚洲精品午夜无码电影网 | 永久黄网站色视频免费直播 | 亚洲一区二区三区偷拍女厕 | 青青久在线视频免费观看 | 精品亚洲韩国一区二区三区 | 麻豆成人精品国产免费 | 亚洲熟妇色xxxxx亚洲 | 水蜜桃色314在线观看 | 免费人成在线视频无码 | 狠狠亚洲超碰狼人久久 | 国产婷婷色一区二区三区在线 | 特黄特色大片免费播放器图片 | 国产国产精品人在线视 | 亚洲中文字幕无码中字 | 免费无码av一区二区 | 亚洲一区二区三区四区 | 精品厕所偷拍各类美女tp嘘嘘 | 99久久精品无码一区二区毛片 | 亚洲中文无码av永久不收费 | 极品嫩模高潮叫床 | 免费无码午夜福利片69 | 久久久久久亚洲精品a片成人 | 久久人人爽人人爽人人片ⅴ | 麻豆国产人妻欲求不满 | 免费无码午夜福利片69 | 狂野欧美性猛交免费视频 | 成人无码精品1区2区3区免费看 | 欧美日韩在线亚洲综合国产人 | 久久久婷婷五月亚洲97号色 | 成年美女黄网站色大免费全看 | 免费人成网站视频在线观看 | 人人爽人人爽人人片av亚洲 | 亚洲中文字幕在线无码一区二区 | 伊人久久婷婷五月综合97色 | 日日噜噜噜噜夜夜爽亚洲精品 | 一本久道久久综合婷婷五月 | 国产精品久久久久9999小说 | 99国产精品白浆在线观看免费 | 欧美激情综合亚洲一二区 | 国产一区二区三区精品视频 | 在线 国产 欧美 亚洲 天堂 | 国产色视频一区二区三区 | 国产疯狂伦交大片 | 色一情一乱一伦一区二区三欧美 | 2020久久超碰国产精品最新 | 精品人妻人人做人人爽 | 日本一区二区更新不卡 | 久久精品一区二区三区四区 | 国产精品怡红院永久免费 | 国语精品一区二区三区 | 97色伦图片97综合影院 | 国産精品久久久久久久 | 激情内射亚州一区二区三区爱妻 | 国精产品一品二品国精品69xx | 色婷婷欧美在线播放内射 | 国内精品人妻无码久久久影院蜜桃 | av无码久久久久不卡免费网站 | 2020久久超碰国产精品最新 | 少妇人妻大乳在线视频 | 又大又黄又粗又爽的免费视频 | 人人澡人人妻人人爽人人蜜桃 | 亚洲欧美日韩综合久久久 | 福利一区二区三区视频在线观看 | 久久精品中文字幕大胸 | 久久国产精品精品国产色婷婷 | 秋霞特色aa大片 | 无码精品人妻一区二区三区av | 啦啦啦www在线观看免费视频 | 在线视频网站www色 | 国精品人妻无码一区二区三区蜜柚 | 天堂а√在线地址中文在线 | 国产情侣作爱视频免费观看 | 国产精品美女久久久久av爽李琼 | 久久久成人毛片无码 | 永久免费观看国产裸体美女 | 日韩亚洲欧美中文高清在线 | 日日躁夜夜躁狠狠躁 | 久久久av男人的天堂 | 欧美刺激性大交 | 精品无人区无码乱码毛片国产 | 亚洲а∨天堂久久精品2021 | 日本大香伊一区二区三区 | 国产亚洲精品久久久ai换 | 亚洲一区二区三区国产精华液 | 色诱久久久久综合网ywww | 久久久久成人精品免费播放动漫 | 亚洲の无码国产の无码步美 | 秋霞成人午夜鲁丝一区二区三区 | 中文字幕中文有码在线 | 久久久婷婷五月亚洲97号色 | 国产成人精品三级麻豆 | 一个人免费观看的www视频 | 天海翼激烈高潮到腰振不止 | 亚洲精品中文字幕久久久久 | 日产国产精品亚洲系列 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国内精品人妻无码久久久影院蜜桃 | 日韩成人一区二区三区在线观看 | 无码人妻精品一区二区三区不卡 | 国产精品怡红院永久免费 | 亚洲小说春色综合另类 | 永久免费精品精品永久-夜色 | 国产成人综合美国十次 | 久久久中文久久久无码 | 国产精品18久久久久久麻辣 | 兔费看少妇性l交大片免费 | 国产精品久久久久久亚洲影视内衣 | 国产在线精品一区二区三区直播 | 野外少妇愉情中文字幕 | 青草青草久热国产精品 | 国产免费久久久久久无码 | 久久无码人妻影院 | 少妇被黑人到高潮喷出白浆 | 国产人妻人伦精品1国产丝袜 | 久久久久亚洲精品中文字幕 | 日本精品人妻无码77777 天堂一区人妻无码 | 少妇性荡欲午夜性开放视频剧场 | 国产精品自产拍在线观看 | 日本一卡二卡不卡视频查询 | 亚洲热妇无码av在线播放 | 少妇性俱乐部纵欲狂欢电影 | 国产精品亚洲综合色区韩国 | 狂野欧美激情性xxxx | 日日夜夜撸啊撸 | 四虎影视成人永久免费观看视频 | 精品久久8x国产免费观看 | 18禁黄网站男男禁片免费观看 | 曰本女人与公拘交酡免费视频 | 成人aaa片一区国产精品 | 久在线观看福利视频 | 久久视频在线观看精品 | 无码人妻出轨黑人中文字幕 | 国产无套内射久久久国产 | 亚洲国产精品一区二区第一页 | 亚洲狠狠色丁香婷婷综合 | 黑人大群体交免费视频 | 国产精品怡红院永久免费 | 亚洲一区二区三区在线观看网站 | 激情亚洲一区国产精品 | 精品无人国产偷自产在线 | 四十如虎的丰满熟妇啪啪 | 伊人久久大香线蕉亚洲 | 午夜精品一区二区三区的区别 | 久久精品人人做人人综合试看 | 亚洲 a v无 码免 费 成 人 a v | 澳门永久av免费网站 | 波多野结衣一区二区三区av免费 | 性色欲情网站iwww九文堂 | 国产亚洲精品久久久久久久 | 色婷婷综合激情综在线播放 | 久久久久亚洲精品中文字幕 | 荫蒂添的好舒服视频囗交 | 亚洲人成人无码网www国产 | 色综合视频一区二区三区 | 日日橹狠狠爱欧美视频 | 精品人妻人人做人人爽 | 国产人妻精品一区二区三区不卡 | 国产99久久精品一区二区 | 免费播放一区二区三区 | 兔费看少妇性l交大片免费 | 国产成人一区二区三区在线观看 | 亚洲乱亚洲乱妇50p | 国产在线aaa片一区二区99 | 少女韩国电视剧在线观看完整 | 久久久久久九九精品久 | 国产内射爽爽大片视频社区在线 | 亚洲一区二区观看播放 | 夜夜躁日日躁狠狠久久av | 成人精品视频一区二区三区尤物 | 成人无码视频在线观看网站 | 日本高清一区免费中文视频 | 日本一卡2卡3卡四卡精品网站 | 黑森林福利视频导航 | 欧美人妻一区二区三区 | 荫蒂被男人添的好舒服爽免费视频 | 亚洲一区二区三区无码久久 | 18精品久久久无码午夜福利 | 大乳丰满人妻中文字幕日本 | 亚洲色欲色欲欲www在线 | 国产在线一区二区三区四区五区 | 澳门永久av免费网站 | 欧美性生交xxxxx久久久 | 丰满肥臀大屁股熟妇激情视频 | 欧美肥老太牲交大战 | 久久人人97超碰a片精品 | 国产高潮视频在线观看 | 国内少妇偷人精品视频免费 | 大肉大捧一进一出视频出来呀 | 7777奇米四色成人眼影 | 亚洲爆乳精品无码一区二区三区 | 欧美成人午夜精品久久久 | 亚洲成色在线综合网站 | 人妻插b视频一区二区三区 | 狠狠cao日日穞夜夜穞av | 国产精品久久久久久亚洲影视内衣 | 日本一区二区三区免费高清 | 久久99国产综合精品 | 成熟人妻av无码专区 | 久久久久成人片免费观看蜜芽 | 亚洲日韩av片在线观看 | 国产在线无码精品电影网 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 国产亚洲人成在线播放 | 麻豆国产人妻欲求不满谁演的 | 麻豆精品国产精华精华液好用吗 | 亚洲国产欧美在线成人 | yw尤物av无码国产在线观看 | 亚洲高清偷拍一区二区三区 | 超碰97人人做人人爱少妇 | 日韩无套无码精品 | 国产精品久久精品三级 | 亚洲国产成人a精品不卡在线 | 强奷人妻日本中文字幕 | 久久久久久国产精品无码下载 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 精品无码国产自产拍在线观看蜜 | 亚洲成色www久久网站 | 亚洲日本一区二区三区在线 | 国产熟女一区二区三区四区五区 | 嫩b人妻精品一区二区三区 | 人人爽人人澡人人高潮 | 国产特级毛片aaaaaaa高清 | 欧美自拍另类欧美综合图片区 | 日本www一道久久久免费榴莲 | 精品国偷自产在线 | 色 综合 欧美 亚洲 国产 | 欧美精品免费观看二区 | 国产无av码在线观看 | aⅴ亚洲 日韩 色 图网站 播放 | 国产熟妇高潮叫床视频播放 | 亚洲国精产品一二二线 | 亚洲精品一区二区三区在线 | 日本大香伊一区二区三区 | 7777奇米四色成人眼影 | 18无码粉嫩小泬无套在线观看 | 国产av无码专区亚洲awww | 亚洲の无码国产の无码影院 | 亚洲乱码国产乱码精品精 | 荡女精品导航 | 久久久国产一区二区三区 | 最近中文2019字幕第二页 | 久久久久久av无码免费看大片 | 漂亮人妻洗澡被公强 日日躁 | 亚洲第一网站男人都懂 | 激情内射日本一区二区三区 | 天堂久久天堂av色综合 | 18禁黄网站男男禁片免费观看 | 日本丰满熟妇videos | 久久无码中文字幕免费影院蜜桃 | 高清不卡一区二区三区 | 国产精品igao视频网 | 少妇高潮喷潮久久久影院 | 国产精品免费大片 | 亚洲精品午夜无码电影网 | 人妻有码中文字幕在线 | 人人爽人人澡人人高潮 | 国产精品无码mv在线观看 | 国产人妻精品午夜福利免费 | 日日摸夜夜摸狠狠摸婷婷 | 国内少妇偷人精品视频免费 | 亚洲成a人片在线观看无码 | 精品aⅴ一区二区三区 | 亚洲中文字幕久久无码 | 亚洲欧美日韩国产精品一区二区 | 国产av无码专区亚洲awww | 国产人成高清在线视频99最全资源 | 99在线 | 亚洲 | 国产精品久久久久久亚洲影视内衣 | 曰韩无码二三区中文字幕 | 成人一在线视频日韩国产 | 18精品久久久无码午夜福利 | 日本高清一区免费中文视频 | 中文字幕无线码 | 性开放的女人aaa片 | 波多野结衣高清一区二区三区 | 曰本女人与公拘交酡免费视频 | 九九久久精品国产免费看小说 | 色窝窝无码一区二区三区色欲 | 亚洲精品成人av在线 | 男女爱爱好爽视频免费看 | 激情内射亚州一区二区三区爱妻 | 久久久久99精品国产片 | 国产情侣作爱视频免费观看 | 无码帝国www无码专区色综合 | 中文字幕无码免费久久9一区9 | 精品久久久久香蕉网 | 激情国产av做激情国产爱 | 少妇人妻偷人精品无码视频 | 久久国产精品_国产精品 | 亲嘴扒胸摸屁股激烈网站 | 亚洲毛片av日韩av无码 | 丰满人妻一区二区三区免费视频 | 亚洲色在线无码国产精品不卡 | 国产午夜亚洲精品不卡 | 在线观看欧美一区二区三区 | 成人无码精品一区二区三区 | 久久久婷婷五月亚洲97号色 | 性色av无码免费一区二区三区 | 久久午夜无码鲁丝片午夜精品 | 国产精品.xx视频.xxtv | 国产精品久久久久9999小说 | 国产精品久久精品三级 | 亚洲伊人久久精品影院 | 欧美人与牲动交xxxx | 国内精品人妻无码久久久影院 | 亚洲无人区午夜福利码高清完整版 | 鲁大师影院在线观看 | 国产免费久久精品国产传媒 | 青青草原综合久久大伊人精品 | 娇妻被黑人粗大高潮白浆 | 欧美三级a做爰在线观看 | 亚洲色在线无码国产精品不卡 | 色欲久久久天天天综合网精品 | 午夜福利一区二区三区在线观看 | 久久精品无码一区二区三区 | 一本色道久久综合亚洲精品不卡 | 久久国产精品二国产精品 | 国产精品人人爽人人做我的可爱 | 欧美怡红院免费全部视频 | 亚洲中文字幕乱码av波多ji | 国产熟妇高潮叫床视频播放 | 亚洲成a人片在线观看无码3d | 欧美阿v高清资源不卡在线播放 | 99久久人妻精品免费一区 | 国内少妇偷人精品视频免费 | 久久久久久国产精品无码下载 | 亚洲一区二区三区偷拍女厕 | 亚洲中文字幕成人无码 | 在线欧美精品一区二区三区 | 2020久久香蕉国产线看观看 | 国产又爽又猛又粗的视频a片 | 一本久久伊人热热精品中文字幕 | 亚洲国产精华液网站w | 久久亚洲国产成人精品性色 | 夜夜夜高潮夜夜爽夜夜爰爰 | 亚洲色大成网站www国产 | 久久精品99久久香蕉国产色戒 | 桃花色综合影院 | 国产美女精品一区二区三区 | 亚洲国产精品成人久久蜜臀 | 久久久久se色偷偷亚洲精品av | 天堂а√在线中文在线 | 玩弄人妻少妇500系列视频 | 真人与拘做受免费视频 | 久久久精品人妻久久影视 | 亚洲一区二区三区偷拍女厕 | 中国女人内谢69xxxx | 少妇无码一区二区二三区 | 少妇邻居内射在线 | 国语自产偷拍精品视频偷 | 网友自拍区视频精品 | 久久99精品国产.久久久久 | 国产综合久久久久鬼色 | 西西人体www44rt大胆高清 | 国产熟妇高潮叫床视频播放 | 男女性色大片免费网站 | 天天拍夜夜添久久精品大 | 岛国片人妻三上悠亚 | 国内老熟妇对白xxxxhd | 国产精品无码一区二区桃花视频 | 国产人妻精品一区二区三区 | 国产成人无码午夜视频在线观看 | 日本成熟视频免费视频 | 欧美一区二区三区视频在线观看 | 国产精品鲁鲁鲁 | 国产乱子伦视频在线播放 | 乱码av麻豆丝袜熟女系列 | 国产精品资源一区二区 | 中文字幕无线码免费人妻 | 国产亚洲精品久久久久久大师 | 国产亚洲精品久久久久久国模美 | 青青青手机频在线观看 | 亚洲精品一区国产 | 久久人人爽人人爽人人片av高清 | 欧美日韩一区二区三区自拍 | 人人澡人摸人人添 | 国产另类ts人妖一区二区 | 精品偷拍一区二区三区在线看 | 精品欧洲av无码一区二区三区 | 人妻天天爽夜夜爽一区二区 | 中国女人内谢69xxxx | 99久久精品日本一区二区免费 | 无码国产色欲xxxxx视频 | 国产97色在线 | 免 | 色婷婷综合激情综在线播放 | 色爱情人网站 | 奇米影视888欧美在线观看 | 无码人妻出轨黑人中文字幕 | 亚洲乱亚洲乱妇50p | 久久无码中文字幕免费影院蜜桃 | 亚洲国产欧美在线成人 | 无码av中文字幕免费放 | 中文字幕久久久久人妻 | 男女猛烈xx00免费视频试看 | 好爽又高潮了毛片免费下载 | 少妇愉情理伦片bd | 亚洲人成人无码网www国产 | 久久久久国色av免费观看性色 | 成人精品一区二区三区中文字幕 | 激情五月综合色婷婷一区二区 | 久久久久人妻一区精品色欧美 | 国内揄拍国内精品人妻 | 精品国产一区二区三区四区 | 一本精品99久久精品77 | 成在人线av无码免观看麻豆 | 日韩精品无码一区二区中文字幕 | 国产性生交xxxxx无码 | 领导边摸边吃奶边做爽在线观看 | 亚洲精品成人福利网站 | 无码人妻少妇伦在线电影 | 久热国产vs视频在线观看 | 奇米影视7777久久精品 | 亚洲国产av精品一区二区蜜芽 | 精品国偷自产在线 | 欧美真人作爱免费视频 | 鲁一鲁av2019在线 | 疯狂三人交性欧美 | 国产特级毛片aaaaaa高潮流水 | 亚洲成a人片在线观看日本 | 久久99精品国产麻豆 | 中文字幕中文有码在线 | 红桃av一区二区三区在线无码av | 欧美日韩视频无码一区二区三 | 亚洲一区二区三区含羞草 | 日韩欧美中文字幕公布 | 夜夜影院未满十八勿进 | 熟妇人妻无码xxx视频 | 亚洲中文字幕成人无码 | 又大又紧又粉嫩18p少妇 | 亚洲伊人久久精品影院 | 久久久久久九九精品久 | 国产免费久久久久久无码 | 激情内射日本一区二区三区 | 久久精品人人做人人综合试看 | 欧美老妇交乱视频在线观看 | 国产精品资源一区二区 | 亚洲色偷偷男人的天堂 | 久久www免费人成人片 | 亚洲精品国产第一综合99久久 | 四虎国产精品免费久久 | 麻豆md0077饥渴少妇 | 人妻熟女一区 | 亚洲综合精品香蕉久久网 | 久久伊人色av天堂九九小黄鸭 | 欧美国产亚洲日韩在线二区 | 欧美人与禽猛交狂配 | 色欲综合久久中文字幕网 | 女人和拘做爰正片视频 | 99在线 | 亚洲 | www成人国产高清内射 | 国产精品理论片在线观看 | 亚洲狠狠婷婷综合久久 | 亚洲精品国产品国语在线观看 | 性欧美疯狂xxxxbbbb | 亚洲色在线无码国产精品不卡 | 日本成熟视频免费视频 | 亚洲国产精品一区二区美利坚 | 东京一本一道一二三区 | 无码国模国产在线观看 | 日韩精品a片一区二区三区妖精 | 成熟妇人a片免费看网站 | 妺妺窝人体色www在线小说 | 熟妇人妻无乱码中文字幕 | 国产精品无码一区二区桃花视频 | 国产精品久久久久久亚洲毛片 | 无套内谢的新婚少妇国语播放 | 国内精品人妻无码久久久影院蜜桃 | 亚洲中文字幕无码中文字在线 | 国产精品第一区揄拍无码 | 国产suv精品一区二区五 | 久久国产36精品色熟妇 | 老子影院午夜精品无码 | 黄网在线观看免费网站 | 久久亚洲国产成人精品性色 | 在线精品亚洲一区二区 | 国产乱人无码伦av在线a | 真人与拘做受免费视频 | 99riav国产精品视频 | 又黄又爽又色的视频 | 欧美激情一区二区三区成人 | 久久久久久九九精品久 | 成人一在线视频日韩国产 | 久久综合色之久久综合 | 人人爽人人爽人人片av亚洲 | 久热国产vs视频在线观看 | 日本又色又爽又黄的a片18禁 | 国产人妻久久精品二区三区老狼 | 国产明星裸体无码xxxx视频 | 亚洲色欲色欲欲www在线 | 精品无码一区二区三区的天堂 | 无码人妻精品一区二区三区不卡 | 精品无码一区二区三区的天堂 | 亚洲日韩av一区二区三区中文 | 亚洲毛片av日韩av无码 | 女高中生第一次破苞av | 沈阳熟女露脸对白视频 | 国产免费观看黄av片 | 国产亚洲精品精品国产亚洲综合 | 亚洲人成网站色7799 | 天海翼激烈高潮到腰振不止 | 亚洲精品一区二区三区在线观看 | 又大又硬又黄的免费视频 | 国产乱人偷精品人妻a片 | 亚洲日韩中文字幕在线播放 | 日韩精品乱码av一区二区 | 国产激情艳情在线看视频 | 国产亚洲人成a在线v网站 | 人人妻人人澡人人爽欧美一区九九 | 东京热一精品无码av | 久久久av男人的天堂 | 97久久国产亚洲精品超碰热 | 国产成人综合色在线观看网站 | 97久久超碰中文字幕 | 色一情一乱一伦一区二区三欧美 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 久久久亚洲欧洲日产国码αv | 亚洲啪av永久无码精品放毛片 | 国产精品毛片一区二区 | 久久精品99久久香蕉国产色戒 | 久久无码中文字幕免费影院蜜桃 | 国产亚洲精品久久久久久久 | 无码人妻丰满熟妇区五十路百度 | 亚洲自偷精品视频自拍 | 国产一区二区三区四区五区加勒比 | 亚洲aⅴ无码成人网站国产app | 久久国产精品_国产精品 | 久久久精品欧美一区二区免费 | 狂野欧美激情性xxxx | 中文字幕av无码一区二区三区电影 | 久久综合九色综合97网 | 亚洲色大成网站www | 5858s亚洲色大成网站www | 久久视频在线观看精品 | 亚洲人成影院在线观看 | 少女韩国电视剧在线观看完整 | 亚洲人成网站免费播放 | 日韩亚洲欧美精品综合 | 帮老师解开蕾丝奶罩吸乳网站 | 久精品国产欧美亚洲色aⅴ大片 | 国产午夜精品一区二区三区嫩草 | 亚洲精品成人福利网站 | 丰满少妇弄高潮了www | 99riav国产精品视频 | 在线а√天堂中文官网 | 婷婷综合久久中文字幕蜜桃三电影 | 日本www一道久久久免费榴莲 | 无码国内精品人妻少妇 | 国产9 9在线 | 中文 | 国产绳艺sm调教室论坛 | 国产精品免费大片 | 亚洲国产精品无码久久久久高潮 | 国产猛烈高潮尖叫视频免费 | 国产精品高潮呻吟av久久 | 国产精品人人爽人人做我的可爱 | 宝宝好涨水快流出来免费视频 | 四十如虎的丰满熟妇啪啪 | 天堂а√在线地址中文在线 | 伦伦影院午夜理论片 | 黑人巨大精品欧美一区二区 | 国产av剧情md精品麻豆 | 俄罗斯老熟妇色xxxx | www国产亚洲精品久久久日本 | 国产激情艳情在线看视频 | 人妻插b视频一区二区三区 | 欧美怡红院免费全部视频 | 亚洲成a人片在线观看无码 | 精品国产成人一区二区三区 | 精品久久久无码人妻字幂 | 国产精品亚洲lv粉色 | 日韩人妻无码一区二区三区久久99 | 久久国产劲爆∧v内射 | 亚洲中文字幕va福利 | 青青青爽视频在线观看 | 亚洲人成网站在线播放942 | 亚洲精品久久久久中文第一幕 | 强辱丰满人妻hd中文字幕 | 99在线 | 亚洲 | 自拍偷自拍亚洲精品被多人伦好爽 | 久久久久免费看成人影片 | 人妻尝试又大又粗久久 | 亚洲人成影院在线无码按摩店 | 日韩人妻少妇一区二区三区 | 亚洲人成网站在线播放942 | 成人aaa片一区国产精品 | 日本一区二区三区免费播放 | 一本无码人妻在中文字幕免费 | 捆绑白丝粉色jk震动捧喷白浆 | 国产麻豆精品一区二区三区v视界 | 日本乱偷人妻中文字幕 | 成人片黄网站色大片免费观看 | 午夜性刺激在线视频免费 | 波多野结衣高清一区二区三区 | 国产97在线 | 亚洲 | 香港三级日本三级妇三级 | 国产一区二区三区精品视频 | 未满小14洗澡无码视频网站 | 亚洲国产欧美日韩精品一区二区三区 | 理论片87福利理论电影 | 又粗又大又硬又长又爽 | 国产乱人伦偷精品视频 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 图片区 小说区 区 亚洲五月 | 在线播放亚洲第一字幕 | 亚洲中文字幕乱码av波多ji | 亚洲aⅴ无码成人网站国产app | 精品久久久中文字幕人妻 | 曰韩少妇内射免费播放 | 亚洲色www成人永久网址 | 熟女体下毛毛黑森林 | 97se亚洲精品一区 | 波多野结衣乳巨码无在线观看 | 国产高清不卡无码视频 | 久久精品国产精品国产精品污 | 最新国产麻豆aⅴ精品无码 | 国产人妻精品一区二区三区 | 久久无码专区国产精品s | 国产亚洲精品久久久久久国模美 | 99久久婷婷国产综合精品青草免费 | 牲欲强的熟妇农村老妇女 | 国产美女极度色诱视频www | 成人女人看片免费视频放人 | 国产亚洲精品精品国产亚洲综合 | 国产成人无码午夜视频在线观看 | 亚洲成av人在线观看网址 | 激情人妻另类人妻伦 | 午夜精品一区二区三区在线观看 | 乱码av麻豆丝袜熟女系列 | 日产国产精品亚洲系列 | 久精品国产欧美亚洲色aⅴ大片 | 久久这里只有精品视频9 | 国产人妖乱国产精品人妖 | 国产一区二区三区四区五区加勒比 | 野狼第一精品社区 | 无遮挡国产高潮视频免费观看 | 成人无码视频免费播放 | 性欧美videos高清精品 | 麻豆国产97在线 | 欧洲 | 久久久亚洲欧洲日产国码αv | 人妻熟女一区 | 欧美日本日韩 | 高清国产亚洲精品自在久久 | av香港经典三级级 在线 | 内射后入在线观看一区 | 精品无码一区二区三区爱欲 | 一区二区传媒有限公司 | 中文字幕久久久久人妻 | 波多野结衣一区二区三区av免费 | 狠狠躁日日躁夜夜躁2020 | 亚洲成av人片天堂网无码】 | 无码精品国产va在线观看dvd | 色诱久久久久综合网ywww | 亚洲国产欧美日韩精品一区二区三区 | 六月丁香婷婷色狠狠久久 | 精品日本一区二区三区在线观看 | 九一九色国产 | 国产精品怡红院永久免费 | 国产欧美精品一区二区三区 | 日本www一道久久久免费榴莲 | 99国产精品白浆在线观看免费 | 亚洲精品久久久久久久久久久 | 日韩人妻系列无码专区 | 无码人妻出轨黑人中文字幕 | 久久亚洲精品成人无码 | 亚洲色欲久久久综合网东京热 | 欧美日本免费一区二区三区 | 久久久久99精品国产片 | 久久精品国产精品国产精品污 | 丝袜足控一区二区三区 | 亚洲日本va中文字幕 | 色婷婷欧美在线播放内射 | 亚洲一区二区三区含羞草 | 国产网红无码精品视频 | 国产亚av手机在线观看 | 国产黑色丝袜在线播放 | 日本一卡2卡3卡四卡精品网站 | 日韩欧美中文字幕在线三区 | 亚洲午夜久久久影院 | 99视频精品全部免费免费观看 | 久久久久久a亚洲欧洲av冫 | 精品成在人线av无码免费看 | 乱人伦中文视频在线观看 | 欧美丰满熟妇xxxx | 欧美精品一区二区精品久久 | √天堂资源地址中文在线 | 久久精品人妻少妇一区二区三区 | 最新国产麻豆aⅴ精品无码 | 高清不卡一区二区三区 | 亚洲va中文字幕无码久久不卡 | 国产av一区二区三区最新精品 | 午夜成人1000部免费视频 | 老太婆性杂交欧美肥老太 | 人妻中文无码久热丝袜 | 亚洲欧洲日本无在线码 | 女人和拘做爰正片视频 | 色综合视频一区二区三区 | 九九在线中文字幕无码 | 无码av中文字幕免费放 | 亚洲精品鲁一鲁一区二区三区 | 日韩精品无码一区二区中文字幕 | 国产精品.xx视频.xxtv | 国产一区二区三区四区五区加勒比 | 亚洲精品美女久久久久久久 | 日本丰满护士爆乳xxxx | 亚洲大尺度无码无码专区 | 亚洲国产精品无码一区二区三区 | 无码av免费一区二区三区试看 | 国产尤物精品视频 | 2020最新国产自产精品 | 在线播放免费人成毛片乱码 | 国产人妻人伦精品1国产丝袜 | 国产成人久久精品流白浆 | 亚洲成色在线综合网站 | 欧美丰满熟妇xxxx性ppx人交 | 水蜜桃av无码 | 亚洲国精产品一二二线 | 3d动漫精品啪啪一区二区中 | 国产精品igao视频网 | 久久久久国色av免费观看性色 | 青青久在线视频免费观看 | 丰满少妇熟乱xxxxx视频 | 又大又黄又粗又爽的免费视频 | 扒开双腿吃奶呻吟做受视频 | 真人与拘做受免费视频 | 亚洲欧美中文字幕5发布 | 日韩精品无码免费一区二区三区 | 欧美亚洲日韩国产人成在线播放 | 亚洲精品一区二区三区婷婷月 | 东京无码熟妇人妻av在线网址 | 亚洲第一网站男人都懂 | 5858s亚洲色大成网站www | 香蕉久久久久久av成人 | 日韩少妇白浆无码系列 | 帮老师解开蕾丝奶罩吸乳网站 | 伊人色综合久久天天小片 | 国产真实夫妇视频 | av在线亚洲欧洲日产一区二区 | av在线亚洲欧洲日产一区二区 | 欧美性生交xxxxx久久久 | 欧美人与物videos另类 | 国语精品一区二区三区 | 妺妺窝人体色www婷婷 | 久久久精品456亚洲影院 | 国产av一区二区三区最新精品 | 98国产精品综合一区二区三区 | 国产成人无码a区在线观看视频app | 日韩 欧美 动漫 国产 制服 | 亚洲啪av永久无码精品放毛片 | 装睡被陌生人摸出水好爽 | 九九在线中文字幕无码 | 久久zyz资源站无码中文动漫 | 国产九九九九九九九a片 | 国产在线精品一区二区高清不卡 | 国产精品久久精品三级 | 国产在线aaa片一区二区99 | 无码国产激情在线观看 | 老熟女重囗味hdxx69 | 亚洲国产欧美日韩精品一区二区三区 | 在线欧美精品一区二区三区 | 久久精品女人的天堂av | 无码av最新清无码专区吞精 | 啦啦啦www在线观看免费视频 | 丰满妇女强制高潮18xxxx | 人人妻人人澡人人爽精品欧美 | 无遮挡啪啪摇乳动态图 | 无人区乱码一区二区三区 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 三上悠亚人妻中文字幕在线 | 高清国产亚洲精品自在久久 | 国产性生大片免费观看性 | 亚洲呦女专区 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 丰满妇女强制高潮18xxxx | 亚洲狠狠婷婷综合久久 | 亚洲中文字幕乱码av波多ji | 99久久久无码国产aaa精品 | 好爽又高潮了毛片免费下载 | 国产在线一区二区三区四区五区 | 7777奇米四色成人眼影 | 99久久精品日本一区二区免费 | 丰满少妇高潮惨叫视频 | 欧美丰满老熟妇xxxxx性 | 人妻无码αv中文字幕久久琪琪布 | 大胆欧美熟妇xx | 老头边吃奶边弄进去呻吟 | 九九在线中文字幕无码 | 免费看少妇作爱视频 | 精品乱子伦一区二区三区 | 伊人色综合久久天天小片 | 免费观看的无遮挡av | 国产精品成人av在线观看 | 亚洲精品久久久久久久久久久 | 色一情一乱一伦一视频免费看 | 欧美freesex黑人又粗又大 | 一本精品99久久精品77 | 久久国产精品偷任你爽任你 | 欧美性猛交内射兽交老熟妇 | 婷婷五月综合缴情在线视频 | 国内少妇偷人精品视频免费 | 国产精品无码一区二区桃花视频 | 老子影院午夜伦不卡 | 久久午夜无码鲁丝片午夜精品 | 俺去俺来也在线www色官网 | 色五月丁香五月综合五月 | 宝宝好涨水快流出来免费视频 | 青青草原综合久久大伊人精品 | 久久精品成人欧美大片 | 亚洲色欲色欲天天天www | 无码毛片视频一区二区本码 | 国产人妻精品午夜福利免费 | 成人亚洲精品久久久久软件 | 国产网红无码精品视频 | 青青青手机频在线观看 | 久久亚洲精品成人无码 | 国产精品嫩草久久久久 | 亚洲一区二区三区偷拍女厕 | 精品一区二区三区无码免费视频 | 午夜理论片yy44880影院 | 99久久99久久免费精品蜜桃 | 亚洲精品欧美二区三区中文字幕 | 国产麻豆精品精东影业av网站 | 99久久久国产精品无码免费 | 伊人久久大香线焦av综合影院 | 免费国产成人高清在线观看网站 | 水蜜桃av无码 | 久久亚洲国产成人精品性色 | 久久久中文久久久无码 | 久久无码专区国产精品s | 天天av天天av天天透 | 少妇性荡欲午夜性开放视频剧场 | 人妻熟女一区 | 精品人人妻人人澡人人爽人人 | 欧洲欧美人成视频在线 | 蜜桃视频韩日免费播放 | 一本久久a久久精品vr综合 | 日产精品高潮呻吟av久久 | 久9re热视频这里只有精品 | 亚洲精品午夜国产va久久成人 | 国产精品无码永久免费888 | 欧美高清在线精品一区 | 亚洲色www成人永久网址 | 网友自拍区视频精品 | 欧美日韩一区二区综合 | 日韩人妻系列无码专区 | 久久99精品国产.久久久久 | 无码人妻精品一区二区三区下载 | 国产精品毛片一区二区 | 西西人体www44rt大胆高清 | 国产激情艳情在线看视频 | 国产无套内射久久久国产 | 午夜无码人妻av大片色欲 | 人人妻人人澡人人爽欧美一区 | 日本熟妇浓毛 | 超碰97人人做人人爱少妇 | 亚洲s色大片在线观看 | 伊人色综合久久天天小片 | 2020最新国产自产精品 | 亚洲人成网站色7799 | 精品国产av色一区二区深夜久久 | 少妇的肉体aa片免费 | 蜜臀av无码人妻精品 | 国产亚洲精品久久久久久大师 | 日日摸天天摸爽爽狠狠97 | 日本爽爽爽爽爽爽在线观看免 | 国产97在线 | 亚洲 | 久久久精品国产sm最大网站 | 成人试看120秒体验区 | 国产精品亚洲专区无码不卡 | 无码吃奶揉捏奶头高潮视频 | 天堂久久天堂av色综合 | 伦伦影院午夜理论片 | 扒开双腿吃奶呻吟做受视频 | 欧美自拍另类欧美综合图片区 | 国产午夜亚洲精品不卡下载 | 女高中生第一次破苞av | 国产午夜亚洲精品不卡下载 | 国产国产精品人在线视 | 国产精品亚洲五月天高清 | 国产真人无遮挡作爱免费视频 | 国产一区二区三区精品视频 | 好屌草这里只有精品 | 99久久精品国产一区二区蜜芽 | 少妇性l交大片欧洲热妇乱xxx | 久久久亚洲欧洲日产国码αv | 色诱久久久久综合网ywww | 人妻aⅴ无码一区二区三区 | 岛国片人妻三上悠亚 | 东京一本一道一二三区 | 高潮毛片无遮挡高清免费视频 | 奇米影视7777久久精品人人爽 | 国产区女主播在线观看 | 狠狠cao日日穞夜夜穞av | 少妇无套内谢久久久久 | 午夜理论片yy44880影院 | 两性色午夜免费视频 | 亚洲自偷自偷在线制服 | 人人澡人人妻人人爽人人蜜桃 | 无码毛片视频一区二区本码 | 国产精品a成v人在线播放 | 久久亚洲中文字幕无码 | 国产无遮挡吃胸膜奶免费看 | 又粗又大又硬毛片免费看 | 午夜精品一区二区三区的区别 | 无码人妻丰满熟妇区毛片18 | 少妇的肉体aa片免费 | 久久午夜无码鲁丝片秋霞 | 亚洲一区二区三区在线观看网站 | 国产精品资源一区二区 | 青青久在线视频免费观看 | 国产人成高清在线视频99最全资源 | 欧美性生交活xxxxxdddd | 四虎4hu永久免费 | 亚洲精品国产精品乱码视色 | 永久免费观看美女裸体的网站 | 精品偷拍一区二区三区在线看 | 强伦人妻一区二区三区视频18 | 牛和人交xxxx欧美 | 久久久久亚洲精品男人的天堂 | 亚洲一区二区三区 | 日本在线高清不卡免费播放 | 久久精品成人欧美大片 | 东京无码熟妇人妻av在线网址 | 一本色道久久综合亚洲精品不卡 | 性做久久久久久久久 | 377p欧洲日本亚洲大胆 | 国产成人人人97超碰超爽8 | 久久精品成人欧美大片 | 人妻熟女一区 | 97夜夜澡人人双人人人喊 | 美女张开腿让人桶 | 日日干夜夜干 | 亚洲精品成人av在线 | 日韩精品乱码av一区二区 | 国产做国产爱免费视频 | 精品 日韩 国产 欧美 视频 | 久久午夜夜伦鲁鲁片无码免费 | 激情国产av做激情国产爱 | 男女下面进入的视频免费午夜 | 亚洲 日韩 欧美 成人 在线观看 | 99久久人妻精品免费二区 | 黑人粗大猛烈进出高潮视频 | 欧美日韩综合一区二区三区 | 国产超级va在线观看视频 | 日本在线高清不卡免费播放 | 久久久婷婷五月亚洲97号色 | 国产 精品 自在自线 | 欧美激情一区二区三区成人 | 成人无码精品1区2区3区免费看 | 无码人妻黑人中文字幕 | 亚洲人亚洲人成电影网站色 | 亚洲日韩精品欧美一区二区 | 人人妻人人澡人人爽人人精品 | 97精品人妻一区二区三区香蕉 | 强开小婷嫩苞又嫩又紧视频 | 国产9 9在线 | 中文 | a在线观看免费网站大全 | 国产suv精品一区二区五 | 国产一精品一av一免费 | 免费播放一区二区三区 | 国产人妖乱国产精品人妖 | 国产成人精品三级麻豆 | 久久97精品久久久久久久不卡 | 中文字幕乱码中文乱码51精品 | 国产精品va在线观看无码 | 色综合天天综合狠狠爱 | 中文字幕无线码免费人妻 | 一本精品99久久精品77 | 三级4级全黄60分钟 | 国产成人av免费观看 | 色老头在线一区二区三区 | 77777熟女视频在线观看 а天堂中文在线官网 | 国产猛烈高潮尖叫视频免费 | 国产精品无码mv在线观看 | 欧美xxxxx精品 | 色婷婷欧美在线播放内射 | 玩弄中年熟妇正在播放 | 中文字幕+乱码+中文字幕一区 | 欧美熟妇另类久久久久久不卡 | 日产精品高潮呻吟av久久 | 国产精品久久久久9999小说 | 国产亚洲tv在线观看 | 18黄暴禁片在线观看 | 亚洲中文字幕在线观看 | 精品一二三区久久aaa片 | 给我免费的视频在线观看 | 女人色极品影院 | 日韩在线不卡免费视频一区 | 国产av一区二区精品久久凹凸 | 免费观看黄网站 | 国产乱人偷精品人妻a片 | 免费观看又污又黄的网站 | 国内精品久久毛片一区二区 | 又大又紧又粉嫩18p少妇 | 成人综合网亚洲伊人 | 日本xxxx色视频在线观看免费 | 中文字幕日韩精品一区二区三区 | 午夜福利试看120秒体验区 | 国产成人综合美国十次 | 日韩少妇白浆无码系列 | 人妻少妇被猛烈进入中文字幕 | 牛和人交xxxx欧美 | 欧美日韩色另类综合 | 人妻少妇被猛烈进入中文字幕 | 久久久久免费精品国产 | 黑人大群体交免费视频 | av香港经典三级级 在线 | ass日本丰满熟妇pics | 国产黄在线观看免费观看不卡 | 国产肉丝袜在线观看 | 亚洲综合伊人久久大杳蕉 | 久久久久免费精品国产 | 全黄性性激高免费视频 | 国产卡一卡二卡三 | 内射爽无广熟女亚洲 | 欧美人妻一区二区三区 | 久久久久人妻一区精品色欧美 | 国产乱人伦av在线无码 | 国产精品99爱免费视频 | 永久黄网站色视频免费直播 | 亚洲欧美精品aaaaaa片 | 国产精品二区一区二区aⅴ污介绍 | 性色欲网站人妻丰满中文久久不卡 | 日本免费一区二区三区最新 | 欧美亚洲国产一区二区三区 | 国产亚洲人成a在线v网站 | 免费无码一区二区三区蜜桃大 | 婷婷五月综合激情中文字幕 | 日韩亚洲欧美精品综合 | 强开小婷嫩苞又嫩又紧视频 | 久久午夜无码鲁丝片午夜精品 | 久久亚洲精品中文字幕无男同 | 天堂а√在线中文在线 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 白嫩日本少妇做爰 | 天天摸天天透天天添 | 人妻无码久久精品人妻 | 少妇人妻av毛片在线看 | 亚洲国产高清在线观看视频 | 无码人妻精品一区二区三区不卡 | 高中生自慰www网站 | 中文字幕精品av一区二区五区 | 国产人妻精品一区二区三区 | 久久国产精品二国产精品 | 好男人社区资源 | 欧美日本精品一区二区三区 | 久久亚洲国产成人精品性色 | 午夜精品一区二区三区的区别 | 国产在线精品一区二区三区直播 | 97精品国产97久久久久久免费 | 丰满肥臀大屁股熟妇激情视频 | 天海翼激烈高潮到腰振不止 | 在线观看国产午夜福利片 | 日产精品99久久久久久 | 亚洲精品午夜国产va久久成人 | 51国偷自产一区二区三区 | 亚洲娇小与黑人巨大交 | 欧美黑人乱大交 | 熟妇人妻无乱码中文字幕 | 成人影院yy111111在线观看 | 精品国产aⅴ无码一区二区 | 亚洲一区av无码专区在线观看 | 一本色道婷婷久久欧美 | 国产成人无码av一区二区 | 国产深夜福利视频在线 | 无遮无挡爽爽免费视频 | 67194成是人免费无码 | 国产人妻精品一区二区三区 | 任你躁在线精品免费 | 丰满肥臀大屁股熟妇激情视频 | 狠狠色丁香久久婷婷综合五月 | 99精品国产综合久久久久五月天 | 人妻少妇精品无码专区二区 | 国产成人无码av在线影院 | 午夜无码人妻av大片色欲 | 综合网日日天干夜夜久久 | 亚洲人成人无码网www国产 | 少妇高潮一区二区三区99 | 亚洲色www成人永久网址 | 久久国产劲爆∧v内射 | 亚洲熟女一区二区三区 | 又粗又大又硬又长又爽 | 亚洲区小说区激情区图片区 | 日韩精品无码一区二区中文字幕 | 国产成人无码av一区二区 | 露脸叫床粗话东北少妇 | 国产人妻人伦精品1国产丝袜 | 性欧美大战久久久久久久 | 亚洲国产欧美国产综合一区 | 久久人妻内射无码一区三区 | 任你躁国产自任一区二区三区 | 国产一区二区三区四区五区加勒比 | 亚洲国产精品毛片av不卡在线 | 国产精品无码mv在线观看 | 麻花豆传媒剧国产免费mv在线 | 国产麻豆精品一区二区三区v视界 | 国内老熟妇对白xxxxhd | 久久精品丝袜高跟鞋 | 夜精品a片一区二区三区无码白浆 | 熟妇人妻无码xxx视频 | 免费看男女做好爽好硬视频 | 亚洲乱码国产乱码精品精 | 小泽玛莉亚一区二区视频在线 | 国产精品二区一区二区aⅴ污介绍 | 丰满诱人的人妻3 | 精品aⅴ一区二区三区 | 国产一区二区三区精品视频 | 日本一区二区三区免费高清 | av在线亚洲欧洲日产一区二区 | 精品少妇爆乳无码av无码专区 | 97se亚洲精品一区 | 日韩av无码一区二区三区 | 澳门永久av免费网站 | 成人无码视频在线观看网站 | 亚洲欧美精品aaaaaa片 | 性啪啪chinese东北女人 | 天天拍夜夜添久久精品 | 大地资源网第二页免费观看 | 国产精品99爱免费视频 | 国产亚洲人成在线播放 | 又色又爽又黄的美女裸体网站 | 国产精品视频免费播放 | 亚洲va欧美va天堂v国产综合 | 成人性做爰aaa片免费看 | 无码吃奶揉捏奶头高潮视频 | 性色av无码免费一区二区三区 | 亚洲欧美日韩成人高清在线一区 | 国产人妖乱国产精品人妖 | 亚洲综合色区中文字幕 | 日韩欧美成人免费观看 | 国产精品亚洲а∨无码播放麻豆 | 成人动漫在线观看 | 窝窝午夜理论片影院 | 亚洲精品综合五月久久小说 | 久久国产精品精品国产色婷婷 | 精品国产av色一区二区深夜久久 | 亚洲精品综合一区二区三区在线 | 国产av无码专区亚洲awww | 国产亲子乱弄免费视频 | 国产精品久久久 | 少妇太爽了在线观看 | 欧美日韩一区二区综合 | 国产区女主播在线观看 | 亚洲а∨天堂久久精品2021 | 色狠狠av一区二区三区 | 亚洲国产日韩a在线播放 | 久久久亚洲欧洲日产国码αv | 给我免费的视频在线观看 | 久久国产自偷自偷免费一区调 | 亚洲男女内射在线播放 | 未满成年国产在线观看 | 国产成人午夜福利在线播放 | 国产绳艺sm调教室论坛 | 澳门永久av免费网站 | 精品成人av一区二区三区 | 奇米影视7777久久精品人人爽 | 日日天干夜夜狠狠爱 | 成 人 网 站国产免费观看 | 国产另类ts人妖一区二区 | 免费无码午夜福利片69 | 国产精品久久久一区二区三区 | 天天做天天爱天天爽综合网 | 欧美熟妇另类久久久久久不卡 | 免费人成网站视频在线观看 | 牲欲强的熟妇农村老妇女 | 精品久久综合1区2区3区激情 | 人人澡人人妻人人爽人人蜜桃 | 少妇被粗大的猛进出69影院 | 亚洲国产av美女网站 | 我要看www免费看插插视频 | 国产精品嫩草久久久久 | 久久天天躁狠狠躁夜夜免费观看 | 亚洲乱亚洲乱妇50p | 无码精品人妻一区二区三区av | 欧美日韩在线亚洲综合国产人 | 国产激情艳情在线看视频 | 国产精品多人p群无码 | 无码人妻黑人中文字幕 | 国产精品永久免费视频 | www国产亚洲精品久久久日本 | 婷婷丁香六月激情综合啪 | 久久国产精品萌白酱免费 | 丰满岳乱妇在线观看中字无码 | 国产精品沙发午睡系列 | 帮老师解开蕾丝奶罩吸乳网站 | 人妻无码αv中文字幕久久琪琪布 | 999久久久国产精品消防器材 | 久久亚洲国产成人精品性色 | 久久久久久av无码免费看大片 | 国产精品久久久久久久9999 | 狠狠色噜噜狠狠狠7777奇米 | 国产在线无码精品电影网 | 精品国产麻豆免费人成网站 | 成人免费视频在线观看 | 欧美国产亚洲日韩在线二区 | 综合激情五月综合激情五月激情1 | 久久人妻内射无码一区三区 | 亚洲色无码一区二区三区 | 在线成人www免费观看视频 | 欧美喷潮久久久xxxxx | 久久综合九色综合欧美狠狠 | 国产明星裸体无码xxxx视频 | 亚洲无人区一区二区三区 | 88国产精品欧美一区二区三区 | 久久视频在线观看精品 | 亚洲色偷偷偷综合网 | 亚洲色欲色欲欲www在线 | 日日碰狠狠丁香久燥 | 荫蒂被男人添的好舒服爽免费视频 | 久久久久久九九精品久 | 亚洲国产av精品一区二区蜜芽 | 亚洲精品久久久久avwww潮水 | 激情人妻另类人妻伦 | 亚洲自偷精品视频自拍 | 波多野结衣 黑人 | 国产精品福利视频导航 | 亚洲精品久久久久avwww潮水 | 亚洲欧美色中文字幕在线 | 日本护士xxxxhd少妇 | 久久久无码中文字幕久... | 日韩少妇内射免费播放 | 国产欧美精品一区二区三区 | 四虎国产精品免费久久 | 国产精品无套呻吟在线 | 偷窥日本少妇撒尿chinese | 成人女人看片免费视频放人 | 波多野结衣 黑人 | 无遮挡国产高潮视频免费观看 | 日韩 欧美 动漫 国产 制服 | 动漫av网站免费观看 | 又湿又紧又大又爽a视频国产 | 大肉大捧一进一出好爽视频 | 天堂在线观看www | 国产免费无码一区二区视频 | 免费播放一区二区三区 | 亚洲综合无码一区二区三区 | 亚洲va欧美va天堂v国产综合 | 性啪啪chinese东北女人 | 欧洲精品码一区二区三区免费看 | 国产免费观看黄av片 | 成人试看120秒体验区 | 国产成人精品无码播放 | 澳门永久av免费网站 | 性色欲网站人妻丰满中文久久不卡 | 亚洲色www成人永久网址 | 午夜精品久久久久久久 | 欧美老妇与禽交 | 亚洲成av人片天堂网无码】 | 5858s亚洲色大成网站www | 老熟妇乱子伦牲交视频 | 极品尤物被啪到呻吟喷水 | 国产欧美精品一区二区三区 | 国产极品视觉盛宴 | 国产成人无码区免费内射一片色欲 | 亚洲欧美综合区丁香五月小说 | 国产高清av在线播放 | 亚洲国产高清在线观看视频 | 精品厕所偷拍各类美女tp嘘嘘 | 亚洲人成网站免费播放 | 兔费看少妇性l交大片免费 | 精品国产国产综合精品 | 性生交片免费无码看人 | 欧美怡红院免费全部视频 | 丰满岳乱妇在线观看中字无码 | 97久久超碰中文字幕 | 亚洲aⅴ无码成人网站国产app | 精品无人区无码乱码毛片国产 | 国产绳艺sm调教室论坛 | 一本久道久久综合婷婷五月 | 中文无码伦av中文字幕 | 日日天日日夜日日摸 | 亚洲精品综合一区二区三区在线 | 老熟女乱子伦 | 无码av岛国片在线播放 | 国产区女主播在线观看 | 午夜精品久久久久久久久 | 欧美成人午夜精品久久久 | 秋霞特色aa大片 | 欧美性猛交内射兽交老熟妇 | 欧美35页视频在线观看 | √8天堂资源地址中文在线 | 午夜无码区在线观看 | 日本丰满熟妇videos | 97色伦图片97综合影院 | 亚洲熟妇自偷自拍另类 | 日本精品人妻无码77777 天堂一区人妻无码 | 国产在线无码精品电影网 | 亚洲精品无码人妻无码 | 欧美亚洲日韩国产人成在线播放 | 午夜嘿嘿嘿影院 | 99精品无人区乱码1区2区3区 | 欧美放荡的少妇 | 久久综合给合久久狠狠狠97色 | 窝窝午夜理论片影院 | 无码人妻丰满熟妇区五十路百度 | 福利一区二区三区视频在线观看 | 男女作爱免费网站 | 亚洲一区二区三区四区 | 亚无码乱人伦一区二区 | 天下第一社区视频www日本 | 国内精品久久毛片一区二区 | 熟妇人妻无码xxx视频 | 99精品视频在线观看免费 | 俺去俺来也www色官网 | 日本护士毛茸茸高潮 | 无码任你躁久久久久久久 | 久久久精品人妻久久影视 | 在线观看免费人成视频 | 玩弄中年熟妇正在播放 | 人人妻人人澡人人爽精品欧美 | 啦啦啦www在线观看免费视频 | 国产精品久久久久无码av色戒 | www国产亚洲精品久久网站 | 丝袜美腿亚洲一区二区 | 人人澡人摸人人添 | 成人综合网亚洲伊人 | 日日麻批免费40分钟无码 | 亚洲 a v无 码免 费 成 人 a v | 国内揄拍国内精品人妻 | 99久久精品国产一区二区蜜芽 | 国产亚洲精品久久久闺蜜 | 西西人体www44rt大胆高清 | 亚洲欧洲中文日韩av乱码 | 国产成人无码a区在线观看视频app | 樱花草在线社区www | 精品国产av色一区二区深夜久久 | 樱花草在线社区www | 精品熟女少妇av免费观看 | 亚洲色无码一区二区三区 | 无套内谢老熟女 | 亚洲中文字幕在线无码一区二区 | 久久国产精品偷任你爽任你 | 欧美人与禽猛交狂配 | 人妻无码αv中文字幕久久琪琪布 | 国产在线一区二区三区四区五区 | 色综合视频一区二区三区 | 精品人妻人人做人人爽夜夜爽 | 国产女主播喷水视频在线观看 | 国产人妻久久精品二区三区老狼 | 中文字幕中文有码在线 | 亚洲区欧美区综合区自拍区 | 日韩精品无码一本二本三本色 | 学生妹亚洲一区二区 | 少妇高潮一区二区三区99 | 亚洲成av人在线观看网址 | 99久久久国产精品无码免费 | 亚洲人成影院在线观看 | 亚洲国产精品一区二区美利坚 | 粗大的内捧猛烈进出视频 | 国产97人人超碰caoprom | 午夜精品久久久久久久久 | 亚洲爆乳精品无码一区二区三区 | 熟妇激情内射com | 亚洲一区二区三区含羞草 | 少妇久久久久久人妻无码 | 九九综合va免费看 | 亚洲一区二区三区在线观看网站 | 久久久久久久久888 | 正在播放老肥熟妇露脸 | 国产真人无遮挡作爱免费视频 | 成年美女黄网站色大免费全看 | 丰满少妇人妻久久久久久 | 久久精品女人的天堂av | 大地资源网第二页免费观看 | 日韩少妇白浆无码系列 | 亚洲人成无码网www | 少女韩国电视剧在线观看完整 | 国产亚洲欧美日韩亚洲中文色 | 欧美freesex黑人又粗又大 | 亚洲国产欧美国产综合一区 | 亚洲热妇无码av在线播放 | 国产av一区二区精品久久凹凸 | 性欧美牲交在线视频 | 亚洲国产成人av在线观看 | 亚洲中文无码av永久不收费 | 免费观看又污又黄的网站 | 成人无码精品1区2区3区免费看 | 久久久久国色av免费观看性色 | 日本熟妇乱子伦xxxx | 亚洲精品中文字幕久久久久 | 国产麻豆精品一区二区三区v视界 | 无码乱肉视频免费大全合集 | 日本www一道久久久免费榴莲 | 日韩视频 中文字幕 视频一区 | 欧美人与牲动交xxxx | 一本久久a久久精品vr综合 | 精品国产一区二区三区av 性色 | 国色天香社区在线视频 | 一二三四在线观看免费视频 | 熟妇人妻中文av无码 | 日韩av无码一区二区三区不卡 | 76少妇精品导航 | 亚洲一区二区三区在线观看网站 | 波多野结衣av一区二区全免费观看 | 性做久久久久久久免费看 | 丁香啪啪综合成人亚洲 | 国产无套粉嫩白浆在线 | 中文字幕无码日韩专区 | 日日躁夜夜躁狠狠躁 | 亚洲男女内射在线播放 | 美女毛片一区二区三区四区 | 在线а√天堂中文官网 | 狠狠躁日日躁夜夜躁2020 | 99久久精品午夜一区二区 | 亚洲 另类 在线 欧美 制服 | av在线亚洲欧洲日产一区二区 | 狠狠色噜噜狠狠狠7777奇米 | 又大又黄又粗又爽的免费视频 | 国产亚洲人成a在线v网站 | 人妻有码中文字幕在线 | 两性色午夜视频免费播放 | a国产一区二区免费入口 | 国产成人无码专区 | 漂亮人妻洗澡被公强 日日躁 | 粉嫩少妇内射浓精videos | 国产精品久久久av久久久 | 51国偷自产一区二区三区 | 狠狠色噜噜狠狠狠狠7777米奇 | 久久亚洲日韩精品一区二区三区 | 99久久99久久免费精品蜜桃 | 国产莉萝无码av在线播放 | 国产福利视频一区二区 | 成人欧美一区二区三区黑人免费 | 一个人免费观看的www视频 | 国产特级毛片aaaaaa高潮流水 | 少妇性俱乐部纵欲狂欢电影 | 狠狠色丁香久久婷婷综合五月 | 18禁黄网站男男禁片免费观看 | 亚洲精品中文字幕久久久久 | 激情五月综合色婷婷一区二区 | 综合网日日天干夜夜久久 | 中文字幕人妻无码一夲道 | 久久午夜无码鲁丝片午夜精品 | 日产国产精品亚洲系列 | 国产成人精品久久亚洲高清不卡 |