You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/1-behavior-nested-tooltip/task.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,24 +2,24 @@ importance: 5
2
2
3
3
---
4
4
5
-
# Improved tooltip behavior
5
+
# Geliştirilmiş ipucu (tooltip) davranışı
6
6
7
-
Write JavaScript that shows a tooltip over an element with the attribute `data-tooltip`.
7
+
Fare ile bir elementin üzerinden geçildiğinde `data-tooltip` özelliği ile beraber tooltip (ipucu) gösteren bir javaScript kodu yazın.
8
8
9
-
That's like the task <info:task/behavior-tooltip>, but here the annotated elements can be nested. The most deeply nested tooltip is shown.
9
+
Buradaki göreve benziyor <info:task/behavior-tooltip>, ancak burada gösterilen öğeler iç içe geçmiş olabilir. En içteki tooltip gösterilmelidir.
10
10
11
-
For instance:
11
+
Örneğin:
12
12
13
13
```html
14
14
<divdata-tooltip="Here – is the house interior"id="house">
15
15
<divdata-tooltip="Here – is the roof"id="roof"></div>
16
16
...
17
-
<ahref="https://en.wikipedia.org/wiki/The_Three_Little_Pigs"data-tooltip="Read on…">Hover over me</a>
17
+
<ahref="https://en.wikipedia.org/wiki/The_Three_Little_Pigs"data-tooltip="Read on…">Fare ile buranın üzerine gel</a>
18
18
</div>
19
19
```
20
20
21
-
The result in iframe:
21
+
Sonuç iframe üzerinde:
22
22
23
23
[iframe src="solution" height=300 border=1]
24
24
25
-
P.S. Hint: only one tooltip may show up at the same time.
25
+
Not ipucu: aynı anda yalnızca bir araç ipucu (tooltip) görünebilir.
Copy file name to clipboardExpand all lines: 2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/2-hoverintent/task.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,29 +2,29 @@ importance: 5
2
2
3
3
---
4
4
5
-
# "Smart" tooltip
5
+
# "Akıllı" tooltip
6
6
7
-
Write a function that shows a tooltip over an element only if the visitor moves the mouse *over it*, but not *through it*.
7
+
Kullanıcı fareyle bir elementin *üzerinden geçtiğinde* ancak *üzerinden geçip gitmediğinde* tooltip (ipucu) gösteren bir fonksiyon yazın.
8
8
9
-
In other words, if the visitor moves the mouse on the element and stopped -- show the tooltip. And if they just moved the mouse through fast, then no need, who wants extra blinking?
9
+
Diğer kelimelerle, eğer kullanıcı faresiyle bir ögenin üzerine gelirse ve durursa -- tooltipi göster. Ancak eğer faresiyle bu ögenin üzerinden hızlıca geçip giderse, tooltip gösterme.
10
10
11
-
Technically, we can measure the mouse speed over the element, and if it's slow then we assume that it comes "over the element" and show the tooltip, if it's fast -- then we ignore it.
11
+
Teknik olarak, bir öğenin üzerindeki fare hızını ölçebiliriz, eğer hızı yavaşsa biz bunu elementin üzerinden geçiyor kabul ederek tooltipi göstermeliyiz. Hızı fazla ise o zaman görmezden gelmeliyiz.
12
12
13
-
Make a universal object`new HoverIntent(options)`for it. With `options`:
13
+
Bunun için global obje`new HoverIntent(options)`yap. `options` (seçenekler) ile beraber:
14
14
15
-
-`elem` -- element to track.
16
-
-`over` -- a function to call if the mouse is slowly moving over the element.
17
-
-`out` -- a function to call when the mouse leaves the element (if`over`was called).
15
+
-`elem` -- Takip edilecek element.
16
+
-`over` -- Eğer fare elementin üzerinden yavaşca geçiyorsa çağırılacak fonksiyon.
17
+
-`out` -- Fare elementin üzerinden ayrıldığı zaman çağırılacak fonksiyon (eğer`over`çağırıldıysa).
18
18
19
-
An example of using such object for the tooltip:
19
+
Tooltip için böyle bir objeyi kullanmaya bir örnek:
20
20
21
21
```js
22
-
//a sample tooltip
22
+
//örnek tooltip
23
23
let tooltip =document.createElement('div');
24
24
tooltip.className="tooltip";
25
25
tooltip.innerHTML="Tooltip";
26
26
27
-
//the object will track mouse and call over/out
27
+
// mouse hareketlerini takip edecek nesne
28
28
newHoverIntent({
29
29
elem,
30
30
over() {
@@ -38,10 +38,10 @@ new HoverIntent({
38
38
});
39
39
```
40
40
41
-
The demo:
41
+
demo:
42
42
43
43
[iframe src="solution" height=140]
44
44
45
-
If you move the mouse over the "clock" fast then nothing happens, and if you do it slow or stop on them, then there will be a tooltip.
45
+
Fareyi "saat" üzerine hızlı bir şekilde hareket ettirirseniz hiçbir şey olmaz ve bunu yavaş yaparsanız veya durdurursanız, bir tooltip gösterecektir.
46
46
47
-
Please note: the tooltip doesn't "blink" when the cursor moves between the clock subelements.
47
+
Lütfen dikkat: imleç saat alt öğeleri arasında hareket ettiğinde tooltip "gelip gitmez".
0 commit comments