我对 Joomla 不是很有经验。这就是为什么我需要你的建议。这个想法是在弹出窗口中显示系统消息。
解决方案:
1.我删除了文件libraries\joomla\document\html\renderer\message.php中的下一行,因为我不需要这个div
$buffer .= "\n<div id=\"system-message-container\">";
$buffer .= "\n</div>";
2.在index.php中我替换了
<jdoc:include type=”message” />
和
<?php if ($this->getBuffer('message')) : ?>
<?php
$message = $this->getBuffer('message');
$script = '<div id="popup"><div id="popup-inner">'.$message.'</div></div><div id="popup-mask"></div>';
echo $script;
?>
<?php endif; ?>
div#popup 用于弹出本身, div#popup-mask 用于叠加
3. 我在 CSS 中设置了 #popup 和 #popup-mask 的样式
#popup-mask {position: absolute; top: 0; left: 0; z-index: 9997; background: url(../images/bg-overlay.png);}
#popup {position: fixed; width: 400px; top: 40%; left: 50%; margin-left: -200px; z-index: 9999; background: #e6e6e6; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px;}
4.并添加了一些jQuery
jQuery.fn.showMask = function () {
var maskHeight = jQuery(document).height();
var maskWidth = jQuery(window).width();
jQuery(this).css({'width':maskWidth,'height':maskHeight});
};
jQuery(document).ready(function() {
if (jQuery('#popup-mask').length){
jQuery('#popup-mask').showMask();
jQuery('#popup-mask').click(function () {
jQuery(this).hide();
jQuery('#popup').hide();
});
jQuery(window).resize (function() {
jQuery('#popup-mask').showMask();
});
}
});
它有效,但正如我已经提到的,我对 Joomla 很陌生。
所以,问题是:
- 这个解决方案好吗?
- 如何改进?