Saturday 24 August 2013

web developer tools


 share button
 http://www.addthis.com/


for javascript popup or slideshow
http://www.scriptiny.com/2009/05/javascript-popup-box/

http://www.textfixer.com/html/javascript-pop-up-window.php

http://www.textfixer.com/tutorials/html-search-box.php

http://jqueryui.com/themeroller/#!zThemeParams=5d000001000406000000000000003d8888d844329a8dfe02723de3e5701cc8cb8a0f4166c8f002bb384a9a94d46b66930ecd1d30314057ff273da42b76034e7df160b9e7ba7002682805fc5802b2a0549efda864da8b43871254a8db50234db11c2645a6a024432bad09b8d7855d6a3efb8321417f716f7d2a0078a45300e3d900039407cc7e51331b176feb95a8300678e4341c911cea30065cfd91c786e8b573d92c84c46463957b2130c9a63f5009ec928e4f6c8de3796f71b4127cfebbccee77d0e3a481a23ce4098d2ce9a732320c6e3c1809119bb08a72eceeec9c5ee52b8b6244643d6c93c42842f43a7230d2c392c7242f1b645b5d815810f6623d16db5a0ac6cc4ee4fcb28466c6a149e1f5ea491ab37b572a440fd4df6bd35f2bc61ee791771cfecd1976767550df34ae11c7176049e996f209cdee56dfd6d0ca9fe4f4ccca30c68c6ec3274e45aa8b69e3145a55e60d34171027cbcfb5807a107a6d173416659fcd4f4f0cc4a6f0dd16e434abd7c115dd999e66724e0f462a49c3798fd9275bad065de6f145d33ec6dc76af35351181829cb3ce2553e33c471b87d5cb39e38c886e03d7c827330c19a8c6d7720e90cc37246cda7513f21b22ec4af478ab0b967432fd2f932b8d5695a922fe7f531b3fd6187d63d8ab160076a332caeae84a111c038d26fe9d652aa56d03a606f9f7230ee77a68f3ff83f43354


//pop up code http://jsfiddle.net/pq8SQ/
<div id="initialPopup">
    <div class="overlay"></div>
    <div class="popupContent" onclick="hideInitialPopup()">
        Popup
    </div>
</div>
<script>
function hideInitialPopup() {
    document.getElementById("initialPopup").style.display = "none";
}
</script>

//css code
.overlay
{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.5;
    filter: alpha(opacity=50);
    z-index: 80;
}
.popupContent
{
    background: #fff;
    padding: 10px;
    border: 1px solid black;
    position: fixed;
    top: 50px;
    left: 50px;
    bottom: 50px;
    right: 50px;
    z-index: 81;
}

No comments:

Post a Comment