Beispiel #1
0
        public UltraApplication(IHTMLElement e)
        {
            var Title = new IHTMLDiv
            {
            };

            new Browsers
            {
            }.Container.AttachTo(Title);

            new HTML.Images.FromBase64.twitter_small().AttachToDocument();
            new HTML.Images.FromBase64._troll__by_GirlFlash().AttachToDocument();

            var TitleLogo = new IHTMLImage("assets/ScriptCoreLib/jsc.png");
            var TitleText = new IHTMLSpan("UltraApplication");

            TitleText.style.fontFamily    = ScriptCoreLib.JavaScript.DOM.IStyle.FontFamilyEnum.Verdana;
            TitleText.style.paddingLeft   = "2em";
            TitleText.style.fontSize      = "xx-large";
            TitleLogo.style.verticalAlign = "middle";


            Title.appendChild(TitleLogo);
            Title.appendChild(TitleText);

            Title.style.height = "128px";

            Title.AttachToDocument();
            Title.FadeIn(2500, 1000,
                         delegate
            {
                1500.AtDelay(ContinueBuildingApplication);
            }
                         );
        }
Beispiel #2
0
        public UltraApplication(IHTMLElement e)
        {
            var Title = new IHTMLDiv
            {
                innerHTML = @"
<img border='0' src='http://www.w3schools.com/images/compatible_ie.gif' width='31' height='30' alt='Internet Explorer' title='Internet Explorer' />
<img border='0' src='http://www.w3schools.com/images/compatible_firefox.gif' width='31' height='30' alt='Firefox' title='Firefox' />
<img border='0' src='http://www.w3schools.com/images/compatible_opera.gif' width='28' height='30' alt='Opera' title='Opera' />
<img border='0' src='http://www.w3schools.com/images/compatible_chrome.gif' width='31' height='30' alt='Google Chrome' title='Google Chrome' />
<img border='0' src='http://www.w3schools.com/images/compatible_safari.gif' width='28' height='30' alt='Safari' title='Safari' />
"
            };


            var TitleLogo = new IHTMLImage("assets/ScriptCoreLib/jsc.png");
            var TitleText = new IHTMLSpan("UltraApplication");

            TitleText.style.fontFamily    = ScriptCoreLib.JavaScript.DOM.IStyle.FontFamilyEnum.Verdana;
            TitleText.style.paddingLeft   = "2em";
            TitleText.style.fontSize      = "xx-large";
            TitleLogo.style.verticalAlign = "middle";


            Title.appendChild(TitleLogo);
            Title.appendChild(TitleText);

            Title.style.height = "128px";

            Title.AttachToDocument();
            Title.FadeIn(2500, 1000,
                         delegate
            {
                1500.AtDelay(ContinueBuildingApplication);
            }
                         );
        }