假设我有链接,我希望当人们点击该链接时,DIV会出现在中心的页面上,最初是透明的,并且逐渐变得突出或通过jquery清晰。
这是一个示例页面。只需转到http://www.purolator.com/purolator/ship-track/tracking-summary.page链接,然后将 602336548147 放入文本框,然后点击跟踪按钮。然后显示一个表格数据与另一个名为验证条目/精炼搜索
的链接只需点击该链接,即可看到div如何显示效果,并在调整大小时保持在页面的中心位置。我想模仿那种效果。所以请指导我如何用jquery做到这一点。感谢
答案 0 :(得分:0)
您想要的是一个模态窗口。您可以使用Simple jQuery Modal Window Tutorial制作类似的效果。
您需要有div
已有或没有内容,但应该存在。你只需要定位它并在这里显示它:
<script>
$(document).ready(function() {
//select all the a tag with name equal to modal
$('a[name=modal]').click(function(e) {
//Cancel the link behavior
e.preventDefault();
//Get the A tag
var id = $(this).attr('href');
//Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();
//Set height and width to mask to fill up the whole screen
$('#mask').css({'width':maskWidth,'height':maskHeight});
//transition effect
$('#mask').fadeIn(1000);
$('#mask').fadeTo("slow",0.8);
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
//Set the popup window to center
$(id).css('top', winH/2-$(id).height()/2);
$(id).css('left', winW/2-$(id).width()/2);
//transition effect
$(id).fadeIn(2000);
});
//if close button is clicked
$('.window .close').click(function (e) {
//Cancel the link behavior
e.preventDefault();
$('#mask, .window').hide();
});
//if mask is clicked
$('#mask').click(function () {
$(this).hide();
$('.window').hide();
});
});
</script>