...
|
...
|
@@ -42,7 +42,9 @@ class Index extends Page { |
|
|
}
|
|
|
bindEvents() {
|
|
|
$('.qcode,.qcode-big').on('mouseover', this.showBigCode.bind(this));
|
|
|
$('.more-fresh').on('mouseover', this.showBigCode.bind(this));
|
|
|
$('.qcode,.qcode-big').on('mouseout', this.hideBigCode.bind(this));
|
|
|
$('.more-fresh').on('mouseout', this.hideBigCode.bind(this));
|
|
|
}
|
|
|
showBigCode(e) {
|
|
|
let index = e.currentTarget.dataset.index;
|
...
|
...
|
|