Click here to Skip to main content
15,880,405 members
Articles / Hosted Services / Azure

YouConf - Your Live Online Conferencing Tool

Rate me:
Please Sign up or sign in to vote.
4.96/5 (41 votes)
17 Nov 2013CPOL167 min read 258.1K   660   70  
A site for managing and delivering virtual conferences - complete with embedded live streaming and chat. Showcasing the best Azure has to offer!
$(function () {
    //And for the second spot prize - make the Code Project man go wild!
    if (window.location.search.indexOf("crazymaneasteregg") > 0) {
        $("img")
        .attr("id", "crazyman")
        .attr("src", "http://www.codeproject.com/images/bob.png")
        .css("width", "278px")
        .css("height", "384px")
        .css("position", "absolute")
        .css("top", "0")
        .css("left", $(window).width() / 2 - 278 / 2)
        .css("display", "none")
        .appendTo("body");

        $("#crazyman")
        .animate({
            width: 'toggle',
            height: 'toggle'
        }, {
            duration: 5000,
            specialEasing: {
                width: 'linear',
                height: 'easeOutBounce'
            },
            complete: function () {
                $("#crazyman").hide("explode", 3000, function () {
                    $("<div style='position: absolute; top: 0; left: 0; width: 100%; height: 100%; text-align: center;background-color:#fff;font-size:50px;'>Easter egg time!</div>")
                    .appendTo("body")
                    .slideDown(1500)
                    .slideUp(1500, function () {
                        $("#crazyman").remove();
                        $(this).remove();
                    });
                });
            }
        });
    }
});

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
New Zealand New Zealand
I'm a software developer based in the beautiful city of Wellington, New Zealand. I love experimenting with new .Net technologies as they arrive, and these days there seems to be a lot of choice as there are so many new features in the framework! My current interests are Azure, ASP.Net MVC, SignalR, Knockout, AngularJS, and responsive design (inc. using Bootstrap, Foundation, Skeleton). These change fairly often as I tinker with various new technologies...

Comments and Discussions