scratch/output/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/index.html

215 lines
12 KiB
HTML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="keywords" content="jQuery, javascript, popup, blog, web">
<link rel="shortcut icon" type="image/x-icon" href="/Scratch/img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="/Scratch/assets/css/main.css" />
<link rel="stylesheet" type="text/css" href="/Scratch/css/twilight.css" />
<link rel="stylesheet" type="text/css" href="/Scratch/css/idc.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://feeds.feedburner.com/yannespositocomen"/>
<link rel="alternate" lang="fr" xml:lang="fr" title="Comment faire des popups en jQuery rapidement" type="text/html" hreflang="fr" href="/Scratch/fr/blog/2010-06-19-jQuery-popup-the-easy-way/" />
<link rel="alternate" lang="en" xml:lang="en" title="jQuery popup the easy way" type="text/html" hreflang="en" href="/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/" />
<script type="text/javascript" src="/Scratch/js/jquery-1.3.1.min.js"></script>
<script type="text/javascript" src="/Scratch/js/jquery.cookie.js"></script>
<script type="text/javascript" src="/Scratch/js/index.js"></script>
<title>jQuery popup the easy way</title>
</head>
<body lang="en">
<script type="text/javascript">// <![CDATA[
document.write('<div id="blackpage"><img src="/Scratch/img/loading.gif" alt="loading..."/></div>');
// ]]>
</script>
<div id="content">
<div id="choix">
<div class="return"><a href="#entete">&darr; Menu &darr;</a></div>
<div id="choixlang">
<a href="/Scratch/fr/blog/2010-06-19-jQuery-popup-the-easy-way/" onclick="setLanguage('fr')">Version Française</a>
</div>
</div>
<div id="titre">
<h1>
jQuery popup the easy way
</h1>
</div>
<div class="flush"></div>
<div class="flush"></div>
<div id="afterheader">
<div class="corps">
<p>Some source code on this blog can be downloaded.
Most of time, the code is larger than the <code>div</code> bloc.
This is why I use a method to show this code in a large jQuery popup. </p>
<p>You can try clicking the following code&nbsp;; remark that the content is cutted a bit after <code>z-index</code>:</p>
<div class="code"><div class="file"><a href="/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/code/essai.js"> &#x27A5; essai.js </a></div><div class="withfile">
<pre class="twilight">
<span class="Comment"><span class="Comment">//</span> --- code popup ---</span>
<span class="Storage">function</span> <span class="Entity">openPopup</span>() {
<span class="Keyword">$</span>(<span class="Variable">this</span>).clone(<span class="Constant">false</span>).appendTo(<span class="Keyword">$</span>(<span class="String"><span class="String">&quot;</span>#_code<span class="String">&quot;</span></span>));
<span class="Keyword">$</span>(<span class="String"><span class="String">&quot;</span>#_code<span class="String">&quot;</span></span>).show();
}
<span class="Storage">function</span> <span class="Entity">closePopup</span>() {
<span class="Keyword">$</span>(<span class="String"><span class="String">&quot;</span>#_code<span class="String">&quot;</span></span>).html(<span class="String"><span class="String">&quot;</span><span class="String">&quot;</span></span>);
<span class="Keyword">$</span>(<span class="String"><span class="String">&quot;</span>#_code<span class="String">&quot;</span></span>).hide();
}
<span class="Storage">function</span> <span class="Entity">initCode</span>() {
<span class="Keyword">$</span>(<span class="String"><span class="String">&quot;</span>.code<span class="String">&quot;</span></span>).<span class="SupportFunction">click</span>(openPopup);
<span class="Keyword">$</span>(<span class="String"><span class="String">&quot;</span>.code<span class="String">&quot;</span></span>).css({cursor: <span class="String"><span class="String">&quot;</span>pointer<span class="String">&quot;</span></span>});
<span class="Keyword">$</span>(<span class="String"><span class="String">'</span>body<span class="String">'</span></span>).append(<span class="String"><span class="String">'</span>&lt;div id=&quot;_code&quot;&gt;&lt;/div&gt;<span class="String">'</span></span>);
<span class="Keyword">$</span>(<span class="String"><span class="String">'</span>#_code<span class="String">'</span></span>).css( { <span class="String"><span class="String">'</span>text-align<span class="String">'</span></span>: <span class="String"><span class="String">&quot;</span>justify<span class="String">&quot;</span></span>, position: <span class="String"><span class="String">&quot;</span>fixed<span class="String">&quot;</span></span>,
left:<span class="Constant">0</span>, top:<span class="Constant">0</span>, width: <span class="String"><span class="String">&quot;</span>100%<span class="String">&quot;</span></span>, height: <span class="String"><span class="String">&quot;</span>100%<span class="String">&quot;</span></span>,
<span class="String"><span class="String">&quot;</span>background-color<span class="String">&quot;</span></span>: <span class="String"><span class="String">&quot;</span>rgba(0, 0, 0, 0.8)<span class="String">&quot;</span></span>, <span class="String"><span class="String">'</span>z-index<span class="String">'</span></span>:<span class="Constant">2000</span>, <span class="String"><span class="String">'</span>padding<span class="String">'</span></span>:<span class="String"><span class="String">'</span>3px<span class="String">'</span></span>} );
<span class="Keyword">$</span>(<span class="String"><span class="String">'</span>#_code<span class="String">'</span></span>).hide();
<span class="Keyword">$</span>(<span class="String"><span class="String">'</span>#_code<span class="String">'</span></span>).<span class="SupportFunction">click</span>(closePopup);
}
<span class="Comment"><span class="Comment">//</span> --- end of code popup section ---</span>
</pre>
</div></div>
<p>This code is the one I use to obtain this result.</p>
<p>What does it do?</p>
<p>At the loading of the page, I create a <code>div</code> as wide as the window.
This <code>div</code> is a bit transparent. Then I hide it. I also take care to its <code>z-index</code> value to be sure it is behind all elements.</p>
<p>Then when we click on a <code>div</code> of class <code>code</code>, I copy the content into this new wide <code>div</code>, and I show it.
Really simple but really efficient.
No need to use a <code>jQuery</code> plugin.</p>
</div>
<div id="choixrss">
<a id="rss" href="http://feeds.feedburner.com/yannespositocomen">
Subscribe
</a>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('#comment').hide();
$('#clickcomment').click(showComments);
});
function showComments() {
$('#comment').show();
$('#clickcomment').fadeOut();
}
document.write('<div id="clickcomment">Comments</div>');
</script>
<div class="flush"></div>
<div class="corps" id="comment">
<h2 class="first">comments</h2>
<noscript>
Vous devez activer javascript pour commenter.
</noscript>
<script type="text/javascript">
var idcomments_acct = 'a307f0044511ff1b5cfca573fc0a52e7';
var idcomments_post_id = '/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/';
var idcomments_post_url = 'http://yannesposito.com/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/';
</script>
<span id="IDCommentsPostTitle" style="display:none"></span>
<script type='text/javascript' src='/Scratch/js/genericCommentWrapperV2.js'></script>
</div>
<div id="entete" class="corps_spaced">
<div id="liens">
<ul><li><a href="/Scratch/en/">Homepage</a></li>
<li><a href="/Scratch/en/blog/">Blog</a></li>
<li><a href="/Scratch/en/about/">About</a></li>
<li><a href="/Scratch/en/contact/">Contact</a></li></ul>
</div>
<div class="flush"></div>
<hr/>
<div id="next_before_articles">
<div id="previous_articles">
previous entries
<div class="previous_article">
<a href="/Scratch/en/blog/2010-06-17-hide-yourself-to-analytics/">&larr; Hide Yourself to your Analytics</a>
</div>
<div class="previous_article">
<a href="/Scratch/en/blog/2010-06-17-track-events-with-google-analytics/">&larr; Track Events with Google Analytics</a>
</div>
<div class="previous_article">
<a href="/Scratch/en/blog/2010-06-15-Get-my-blog-engine/">&larr; Get my blog engine</a>
</div>
</div>
<div id="next_articles">
next entries
<div class="next_article">
<a href="/Scratch/en/blog/2010-07-05-Cappuccino-and-Web-applications/">Cappuccino vs jQuery&rarr; </a>
</div>
<div class="next_article">
<a href="/Scratch/en/blog/2010-07-07-CSS-rendering-problems-by-navigator/">Do not use CSS gradient with Chrome&rarr; </a>
</div>
<div class="next_article">
<a href="/Scratch/en/blog/2010-07-31-New-style-after-holidays/">New style after holidays&rarr; </a>
</div>
</div>
<div class="flush"></div>
</div>
</div>
<div id="bottom">
<div>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Copyright ©, Yann Esposito</a>
</div>
<div id="lastmod">
Created: 06/19/2010 <br/>
2010-08-25 10:10:27 +00:00
Last modified: 07/17/2010
</div>
<div>
Entirely done with
<a href="http://www.vim.org">Vim</a>
and
<a href="http://nanoc.stoneship.org">nanoc</a>
</div>
<div>
<a href="/Scratch/en/validation/">Validation</a>
<a href="http://validator.w3.org/check?uri=referer"> [xhtml] </a>
.
<a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3"> [css] </a>
.
<a href="http://validator.w3.org/feed/check.cgi?url=http%3A//yannesposito.com/Scratch/en/blog/feed/feed.xml">[rss]</a>
</div>
</div>
<div class="clear"></div>
</div>
</body>
</html>