...
|
...
|
@@ -1093,12 +1093,19 @@ $deviceSwitcher.on('click', function() { |
|
|
}
|
|
|
});
|
|
|
|
|
|
$qrCodeContainer.on('mouseenter', function() {
|
|
|
$qrCodeOverLayer.addClass('qrcode-overlay-helper');
|
|
|
});
|
|
|
|
|
|
$qrCodeOverLayer.on('mouseleave', function() {
|
|
|
$qrCodeOverLayer.removeClass('qrcode-overlay-helper');
|
|
|
// 鼠标移动到上面
|
|
|
$('#qrcode-hover').hover(function() {
|
|
|
$qrCodeContainer.stop(false, true).animate({left: '-=65'}, {
|
|
|
complete: function() {
|
|
|
$('#qrcode-helper').removeClass('hide');
|
|
|
}
|
|
|
});
|
|
|
}, function() {
|
|
|
$qrCodeContainer.stop(false, true).animate({left: '+=65'}, {
|
|
|
start: function() {
|
|
|
$('#qrcode-helper').addClass('hide');
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
|
|
|
$qrCodeOverLayer.on('click', '#qrcode-refresh-btn', function() {
|
...
|
...
|
|