medor
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

colorSeparation_footer.html
text/html

Download raw (748 bytes)

    <script type="text/javascript" src="../lib/jquery.min.js"></script>
    <script type="text/javascript" src="../lib/jquery.lazyload.min.js"></script>
    <script type="text/javascript" charset="utf-8">
        $(".cyan, .magenta, .yellow, .black").hide();
        $("img").lazyload({
            skip_invisible : false
        });
        function showhide(color){
            $("#" + color).click(function(){
                $("img").hide();
                $("." + color).show();
            });
        }
        $(document).ready(function(){
            showhide("all");
            showhide("cyan");
            showhide("magenta");
            showhide("yellow");
            showhide("black");
        }); 
    </script>
</body>
</html>