<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Intro JS &#8211; Sibeesh Passion</title>
	<atom:link href="https://sibeeshpassion.com/tag/intro-js/feed/" rel="self" type="application/rss+xml" />
	<link>https://sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Fri, 17 Jul 2015 12:47:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>Intro JS &#8211; Sibeesh Passion</title>
	<link>https://sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>C# Corner FAQ Integration in Web Application Using IntroJS</title>
		<link>https://sibeeshpassion.com/c-corner-faq-integration-in-web-application-using-introjs/</link>
					<comments>https://sibeeshpassion.com/c-corner-faq-integration-in-web-application-using-introjs/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Thu, 29 Jan 2015 20:00:40 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Intro JS]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=1241</guid>

					<description><![CDATA[Introduction This article covers how to use Intro JS in our web application. Please see this article in my blog: http://sibeeshpassion.com/using-introjs.html Background We all are familiar with C# Corner FAQ. So I thought of integrating the FAQ with Intro JS. I hope you will like it :). Using the code To start we need to download the intro js plug in and the necessary files. Please download those fromhere. Now after downloading, extract the files. You can see many files there. From that select the necessary files alone for now. bootstrap-responsive.min.css bootstrap.min.css demo.css introjs.css intro.js Now include all the preceding files [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>Introduction<br />
</strong><br />
This article covers how to use Intro JS in our web application.</p>
<div>Please see this article in my blog: <a href="http://sibeeshpassion.com/using-introjs.html">http://sibeeshpassion.com/using-introjs.html</a><br />
<strong>Background</p>
<p></strong>We all are familiar with C# Corner FAQ. So I thought of integrating the FAQ with Intro JS. I hope you will like it :).</p>
<p><strong>Using the code</p>
<p></strong>To start we need to download the intro js plug in and the necessary files. Please download those from<a href="https://github.com/usablica/intro.js/tags" rel="nofollow">here</a>.<br />
Now after downloading, extract the files. You can see many files there. From that select the necessary files alone for now.</div>
<ol>
<li>bootstrap-responsive.min.css</li>
<li>bootstrap.min.css</li>
<li>demo.css</li>
<li>introjs.css</li>
<li>intro.js</li>
</ol>
<p>Now include all the preceding files to our website and create a web page as well. So the next step is to include the files in our web page (in this case Default.aspx).</p>
<div class="dp-highlighter">
<div class="bar"></div>
<ol class="dp-c">
<li class="alt">&lt;!&#8211; styles &#8211;&gt;</li>
<li>    &lt;link href=<span class="string">&#8220;bootstrap.min.css&#8221;</span> rel=<span class="string">&#8220;stylesheet&#8221;</span> /&gt;</li>
<li class="alt">    &lt;link href=<span class="string">&#8220;demo.css&#8221;</span> rel=<span class="string">&#8220;stylesheet&#8221;</span> /&gt;</li>
<li>    &lt;link href=<span class="string">&#8220;bootstrap-responsive.min.css&#8221;</span> rel=<span class="string">&#8220;stylesheet&#8221;</span> /&gt;</li>
<li class="alt"></li>
<li>    &lt;!&#8211; Add IntroJs styles &#8211;&gt;</li>
<li class="alt">    &lt;link href=<span class="string">&#8220;introjs.css&#8221;</span> rel=<span class="string">&#8220;stylesheet&#8221;</span> /&gt;</li>
</ol>
</div>
<p>So now to identify what exactly are the basics of this plug. For example I have given a UI element as:</p>
<div class="dp-highlighter">
<div class="bar"></div>
<ol class="dp-c">
<li class="alt">&lt;p <span class="keyword">class</span>=<span class="string">&#8220;lead&#8221;</span> data-step=<span class="string">&#8220;2&#8221;</span> data-intro=<span class="string">&#8220;Another step.&#8221;</span>&gt;</li>
</ol>
</div>
<p>In this you can see data-step=&#8221;2&#8243;, what does it mean? It means this element must be fired second 🙂 You can see more UI elements with this data-step attribute in DefaultCCorner.aspx.</p>
<p>And to make our page more responsive I have added the following images from the C# corner page.</p>
<ul>
<li>1.png</li>
<li>2.png</li>
<li>3.png</li>
<li>4.png</li>
<li>5.png</li>
<li>6.png</li>
<li>7.png</li>
</ul>
<p>After all these steps, this is how our page looks.</p>
<div class="dp-highlighter">
<div class="bar"></div>
<ol class="dp-c">
<li class="alt">&lt;%@ Page Language=<span class="string">&#8220;C#&#8221;</span> AutoEventWireup=<span class="string">&#8220;true&#8221;</span> CodeFile=<span class="string">&#8220;Default.aspx.cs&#8221;</span> Inherits=<span class="string">&#8220;_Default&#8221;</span> %&gt;</li>
<li></li>
<li class="alt">&lt;!DOCTYPE html&gt;</li>
<li>&lt;html lang=<span class="string">&#8220;en&#8221;</span>&gt;</li>
<li class="alt">  &lt;head&gt;</li>
<li>    &lt;meta charset=<span class="string">&#8220;utf-8&#8221;</span>&gt;</li>
<li class="alt">    &lt;title&gt;How you can write code project article&lt;/title&gt;</li>
<li>    &lt;meta name=<span class="string">&#8220;viewport&#8221;</span> content=<span class="string">&#8220;width=device-width, initial-scale=1.0&#8221;</span>&gt;</li>
<li class="alt">    &lt;!&#8211; styles &#8211;&gt;</li>
<li>    &lt;link href=<span class="string">&#8220;bootstrap.min.css&#8221;</span> rel=<span class="string">&#8220;stylesheet&#8221;</span> /&gt;</li>
<li class="alt">    &lt;link href=<span class="string">&#8220;demo.css&#8221;</span> rel=<span class="string">&#8220;stylesheet&#8221;</span> /&gt;</li>
<li>    &lt;link href=<span class="string">&#8220;bootstrap-responsive.min.css&#8221;</span> rel=<span class="string">&#8220;stylesheet&#8221;</span> /&gt;</li>
<li class="alt">    &lt;!&#8211; Add IntroJs styles &#8211;&gt;</li>
<li>    &lt;link href=<span class="string">&#8220;introjs.css&#8221;</span> rel=<span class="string">&#8220;stylesheet&#8221;</span> /&gt;</li>
<li class="alt">  &lt;/head&gt;</li>
<li>  &lt;body&gt;</li>
<li class="alt">    &lt;div <span class="keyword">class</span>=<span class="string">&#8220;container-narrow&#8221;</span>&gt;</li>
<li>        &lt;div <span class="keyword">class</span>=<span class="string">&#8220;masthead&#8221;</span>&gt;</li>
<li class="alt">            &lt;ul <span class="keyword">class</span>=<span class="string">&#8220;nav nav-pills pull-right&#8221;</span> data-step=<span class="string">&#8220;9&#8221;</span> data-intro=<span class="string">&#8220;Get it, use it.&#8221;</span>&gt;</li>
<li>                &lt;img src=<span class="string">&#8220;9.png&#8221;</span> /&gt;</li>
<li class="alt">            &lt;/ul&gt;</li>
<li>        &lt;/div&gt;</li>
<li class="alt">        &lt;hr&gt;</li>
<li>        &lt;div <span class="keyword">class</span>=<span class="string">&#8220;jumbotron&#8221;</span>&gt;</li>
<li class="alt">            &lt;h1 data-step=<span class="string">&#8220;1&#8221;</span> data-intro=<span class="string">&#8220;This is a tooltip!&#8221;</span>&gt;What is C# corner? &lt;/h1&gt;</li>
<li>            &lt;p <span class="keyword">class</span>=<span class="string">&#8220;lead&#8221;</span> data-step=<span class="string">&#8220;2&#8221;</span> data-intro=<span class="string">&#8220;Another step.&#8221;</span>&gt;</li>
<li class="alt">                Started <span class="keyword">in</span> 2000 as a hobby, C# Corner is an absolutely FREE online social community <span class="keyword">for</span> IT Developers and Professionals to exchange their knowledge and experience by teaching and learning from one another by using various interactive online methods such as contributing articles, discussion forums, blogs, and videos. Today, C# Corner and Mindcracker network reach over 3+ million monthly users.</li>
<li>            &lt;/p&gt;</li>
<li class="alt">            &lt;a <span class="keyword">class</span>=<span class="string">&#8220;btn btn-large btn-success&#8221;</span> href=<span class="string">&#8220;javascript:void(0);&#8221;</span> onclick=<span class="string">&#8220;javascript:introJs().start();&#8221;</span>&gt;Show me how I can write an article!.&lt;/a&gt;</li>
<li>        &lt;/div&gt;</li>
<li class="alt">        &lt;hr&gt;</li>
<li>         &lt;div <span class="keyword">class</span>=<span class="string">&#8220;span6&#8221;</span> data-step=<span class="string">&#8220;5&#8221;</span> data-intro=<span class="string">&#8220;More And More.&#8221;</span> data-position=<span class="string">&#8216;left&#8217;</span>&gt;</li>
<li class="alt">                &lt;h4&gt;Step 3: Article contents&lt;/h4&gt;</li>
<li>                &lt;p&gt;</li>
<li class="alt">                    &lt;img src=<span class="string">&#8220;3.png&#8221;</span> /&gt;</li>
<li>                &lt;/p&gt;</li>
<li class="alt">            &lt;/div&gt;</li>
<li>        &lt;div <span class="keyword">class</span>=<span class="string">&#8220;row-fluid marketing&#8221;</span>&gt;</li>
<li class="alt">            &lt;div <span class="keyword">class</span>=<span class="string">&#8220;span6&#8221;</span> data-step=<span class="string">&#8220;3&#8221;</span> data-intro=<span class="string">&#8220;Ok, wasn&#8217;t that fun?&#8221;</span> data-position=&#8217;right&#8217;&gt;</li>
<li>                &lt;h4&gt;Step 1: Submit an article&lt;/h4&gt;</li>
<li class="alt">                &lt;p&gt;</li>
<li>                    &lt;img src=<span class="string">&#8220;1.png&#8221;</span> /&gt;</li>
<li class="alt">                &lt;/p&gt;</li>
<li>            &lt;/div&gt;</li>
<li class="alt">             &lt;div <span class="keyword">class</span>=<span class="string">&#8220;span6&#8221;</span> data-step=<span class="string">&#8220;7&#8221;</span> data-intro=<span class="string">&#8220;Still More.&#8221;</span> data-position=<span class="string">&#8216;left&#8217;</span>&gt;</li>
<li>                &lt;h4&gt;Step 5: Done&lt;/h4&gt;</li>
<li class="alt">                &lt;p&gt;</li>
<li>                    &lt;img src=<span class="string">&#8220;5.png&#8221;</span> /&gt;</li>
<li class="alt">                &lt;/p&gt;</li>
<li>            &lt;/div&gt;</li>
<li class="alt">            &lt;div <span class="keyword">class</span>=<span class="string">&#8220;span6&#8221;</span> data-step=<span class="string">&#8220;4&#8221;</span> data-intro=<span class="string">&#8220;More features, more fun.&#8221;</span> data-position=<span class="string">&#8216;left&#8217;</span>&gt;</li>
<li>                &lt;h4&gt;Step 2: Agree&lt;/h4&gt;</li>
<li class="alt">                &lt;p&gt;</li>
<li>                    &lt;img src=<span class="string">&#8220;2.png&#8221;</span> /&gt;</li>
<li class="alt">                &lt;/p&gt;</li>
<li>            &lt;/div&gt;</li>
<li class="alt">             &lt;div <span class="keyword">class</span>=<span class="string">&#8220;span6&#8221;</span> data-step=<span class="string">&#8220;6&#8221;</span> data-intro=<span class="string">&#8220;Still More.&#8221;</span> data-position=<span class="string">&#8216;left&#8217;</span>&gt;</li>
<li>                &lt;h4&gt;Step 6: Author’s Article &lt;/h4&gt;</li>
<li class="alt">                &lt;p&gt;</li>
<li>                    &lt;img src=<span class="string">&#8220;6.png&#8221;</span> /&gt;</li>
<li class="alt">                &lt;/p&gt;            &lt;/div&gt;</li>
<li>            &lt;div <span class="keyword">class</span>=<span class="string">&#8220;span6&#8221;</span> data-step=<span class="string">&#8220;8&#8221;</span> data-intro=<span class="string">&#8220;Still More.&#8221;</span> data-position=<span class="string">&#8216;left&#8217;</span>&gt;</li>
<li class="alt">                &lt;h4&gt;Step 7: Author’s Article: Under review&lt;/h4&gt;</li>
<li>                &lt;p&gt;</li>
<li class="alt">                    &lt;img src=<span class="string">&#8220;7.png&#8221;</span> /&gt;</li>
<li>                &lt;/p&gt;</li>
<li class="alt">            &lt;/div&gt;</li>
<li>&lt;div <span class="keyword">class</span>=<span class="string">&#8220;span6&#8221;</span> data-step=<span class="string">&#8220;9&#8221;</span> data-intro=<span class="string">&#8220;Still More.&#8221;</span> data-position=<span class="string">&#8216;left&#8217;</span>&gt;</li>
<li class="alt">                &lt;h4&gt;Step 8: Sign Up&lt;/h4&gt;</li>
<li>                &lt;p&gt;</li>
<li class="alt">                    &lt;img src=<span class="string">&#8220;8.png&#8221;</span> /&gt;</li>
<li>                &lt;/p&gt;</li>
<li class="alt">            &lt;/div&gt;</li>
<li></li>
<li class="alt">        &lt;/div&gt;</li>
<li></li>
<li class="alt">        &lt;hr&gt;</li>
<li>    &lt;/div&gt;</li>
<li class="alt">    &lt;script type=<span class="string">&#8220;text/javascript&#8221;</span> src=<span class="string">&#8220;intro.js&#8221;</span>&gt;&lt;/script&gt;</li>
<li>&lt;/body&gt;</li>
<li class="alt">&lt;/html&gt;</li>
</ol>
</div>
<p>Thank you for reading 🙂</p>
<p><strong>Output: </strong><a href="http://i.imgur.com/NGuRoIF.png">What is C# Corner</a><span style="color: #0000ff;">?</span></p>
<p>See more here: <a href="http://usablica.github.io/intro.js/" rel="nofollow">http://usablica.github.io/intro.js/</a></p>
<p><strong>History<br />
</strong><br />
First Version: 12-11-2014</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sibeeshpassion.com/c-corner-faq-integration-in-web-application-using-introjs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
