最近要做一个类似大富翁游戏那样的效果,点开始按钮转盘开始转,比如转到4停下来,下一次再转的时候要从4开始走,我要怎么样记住4这个值呢,请大神指点,感激不尽
(function ($) {
var Richman = function (o, options) {
this.o = o;
this.options = $.extend({}, Richman.options, options);
this.number= this.options.number;
this.index = this.options.index;
this.timer = null;
this.init();
};
Richman.prototype = {
init: function () {
this.gridRoll(this.number);
},
gridRoll: function (number) {
var _this = this;
this.timer = setInterval(function () {
$(".item-" + _this.index).addClass('active').siblings().removeClass('active');
if(_this.index == number) {
clearInterval(_this.timer);
}
_this.index++;
}, 500)
}
};
$.fn.Richman = function (options) {
options = $.extend({}, $.fn.Richman.options, options);
this.each(function () {
new Richman($(this), options);
})
};
Richman.options = {
number: 4,
index: 0,
start: 0
}
})(jQuery);
$(document).ready(function () {
$(".btn-click").on('click', function () {
$(".wrap").Richman();
})
})
用cookie
github地址