-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
107 lines (97 loc) · 2.86 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.wrapper{
clear: both;
}
.wrapper div{
float: left;
width: 100px;
height: 100px;
margin: 10px;
border: 1px solid #000;
}
#input{
clear: both;
width: 200px;
height: 30px;
line-height: 30px;
border: 2px solid #000;
}
</style>
</head>
<body>
<div class="wrapper" id="main1">
<div>1.按上为自定义焦点</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
<div class="wrapper" id="main2">
<div>6</div>
<div>7</div>
<div>8</div>
<div>9</div>
<div>10.按下为自定义焦点</div>
</div>
<div id="input">
<div></div>
</div>
<script src="js/tv.js"></script>
<script>
//获取所有焦点, concat用于拼接FOCUS对象。
var elements = $('#main1').children().concat( $('#main2').children() ).concat( $('#input') );
//初始化
tgo.init({
allFocus: elements, //设置所有可获取焦点的element;
miss: 5, //允许元素之间重叠5像素以内,默认值为0。
})
//设置focus、blur、ok事件
elements.focus(function(){
console.log(tgo.currentFocus); //当前焦点
$(this).css('background-color', 'red');
}).blur(function(){
$(this).css('background-color', 'transparent');
}).ok(function(){
alert($(this).text());
})
//自定义事件
tgo.$focus = [
{
element: elements[0],
direction: {
top: function(){
alert('这是一个向上的自定义焦点事件,return 的值为焦点目标');
return $('#main2').children().eq(4)
}
}
},
{
element: elements[9],
direction: {
bottom: function(){
alert('这是一个向下的自定义焦点事件,return 的值为焦点目标');
return $('#main1').children().eq(0)
}
}
},
]
//设置初始焦点
elements.eq(0).focus();
//设置输入框。
$('#input').setInput(0 ,{
value: '110',
maxLength: 12
}).ok(function(){
//重写了66行的事件
alert('输入框的值为' + $(this).val())
})
</script>
</body>
</html>