我一直在寻找一些代码来帮助我关注光标跟随的页面,周围有一些示例,但这个引起了我的注意:https ://github.com/Goutte/Eye主要是因为它需要的代码很少。
它使用我以前从未见过的 mootools,是否可以将其转换为使用 jQuery,或者有人可以准确地解释它是如何使用这么少的 javascript 工作的?mootools 内置了哪些功能,让这一切变得如此简单?
JsFiddle:http: //jsfiddle.net/B2Nza/46/
var options2 = {
socketRadius: 2, // radius of the circle in which the eye's pupil can move
bindTouchMove: true,
}
var leftEye2 = new Eye ('left_eye2', options2);
var rightEye2 = new Eye ('right_eye2', options2);
var fly2 = new Eye ('fly2', {
socketRadius: 17,
behavior: 'follow',
stickToSocket: true
});