65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
(function (MemoryGame, $) {
|
|
|
|
/**
|
|
* A dialog for reading the description of a card.
|
|
*
|
|
* @class H5P.MemoryGame.Popup
|
|
* @param {H5P.jQuery} $container
|
|
*/
|
|
MemoryGame.Popup = function ($container, styles) {
|
|
/** @alias H5P.MemoryGame.Popup# */
|
|
var self = this;
|
|
|
|
var closed;
|
|
|
|
var $popup = $('<div class="h5p-memory-pop"><div class="h5p-memory-top"' + styles + '></div><div class="h5p-memory-desc"></div></div>').appendTo($container);
|
|
var $desc = $popup.find('.h5p-memory-desc');
|
|
var $top = $popup.find('.h5p-memory-top');
|
|
|
|
/**
|
|
* Show the popup.
|
|
*
|
|
* @param {string} desc
|
|
* @param {H5P.jQuery[]} imgs
|
|
* @param {function} done
|
|
*/
|
|
self.show = function (desc, imgs, styles, done) {
|
|
$desc.html(desc);
|
|
$top.html('').toggleClass('h5p-memory-two-images', imgs.length > 1);
|
|
for (var i = 0; i < imgs.length; i++) {
|
|
$('<div class="h5p-memory-image"' + styles + '></div>').append(imgs[i]).appendTo($top);
|
|
}
|
|
$popup.show();
|
|
closed = done;
|
|
};
|
|
|
|
/**
|
|
* Close the popup.
|
|
*/
|
|
self.close = function () {
|
|
if (closed !== undefined) {
|
|
$popup.hide();
|
|
closed();
|
|
closed = undefined;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Sets popup size relative to the card size
|
|
* @param {number} fontSize
|
|
*/
|
|
self.setSize = function (fontSize) {
|
|
// Set image size
|
|
$top[0].style.fontSize = fontSize + 'px';
|
|
|
|
// Determine card size
|
|
var cardSize = fontSize * 6.25; // From CSS
|
|
|
|
// Set popup size
|
|
$popup[0].style.minWidth = (cardSize * 2.5) + 'px';
|
|
$popup[0].style.minHeight = cardSize + 'px';
|
|
};
|
|
};
|
|
|
|
})(H5P.MemoryGame, H5P.jQuery);
|