ポップアップ(クリック)するログインフォームがありますが、サイトの任意のページをクリックすると、1秒間点滅します。これは、ワードプレス用のこのプラグインを使用して生成されますhttp://wordpress.org/extend/plugins/flexible-frontend-login/
再作成するには、サイトをロードして、ナビゲーションバーの[カレンダー]リンクをクリックします。ログインフォームが点滅します。コンソールに何も表示されません。
関連するJavascript(コンソール/リソースから取得したと思います):
jQuery(document).ready(function($) {
// $() will work as an alias for jQuery() inside of this function
// Add an empty container for overlay
$(document).ready( function($) {
$('html').prepend('<div id="ffl-mask"></div><!-- added by Flexible Frontend Login Plugin. Needed for overlay. -->');
} );
$(document).ready(function() {
//select all the a tag with name equal to ffl-modal
$('a[name=ffl-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
$('#ffl-mask').css({'width':maskWidth,'height':maskHeight});
//transition effect
$('#ffl-mask').fadeIn(600);
$('#ffl-mask').fadeTo("fast",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(1000);
});
//if close button is clicked
$('.ffl-window .ffl-close').click(function (e) {
//Cancel the link behavior
e.preventDefault();
$('#ffl-mask, .ffl-window').hide();
});
//if mask is clicked
$('#ffl-mask').click(function () {
$(this).hide();
$('.ffl-window').hide();
});
});
// calculate mask when user resizes window
$(document).ready(function () {
$(window).resize(function () {
var box = $('#ffl-boxes .ffl-window');
//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
$('#ffl-mask').css({'width':maskWidth,'height':maskHeight});
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
//Set the popup window to center
box.css('top', winH/2 - box.height()/2);
box.css('left', winW/2 - box.width()/2);
});
});
$(document).ready(function() {
// find all instances of flexible-frontend-login to append individual links
$('a[name=ffl-popup]').each(function(){
// get the tags from link
var id = $(this).attr('href');
// set linked div to hidden
$(id).hide();
});
// select a tags with name equal to ffl-popup
$('a[name=ffl-popup]').click(function(e) {
// cancel link behavior
e.preventDefault();
// get the tags from link
var id = $(this).attr('href');
// Set visibility
$(id).css('display', 'block');
});
//if close button is clicked
$('.ffl-close-popup-link').click(function(e) {
//Cancel the link behavior
e.preventDefault();
// get parent id
var id = $(this).parents('div:eq(0)').attr('id');
// and hide it
$('#'+id).hide();
});
});
});