开发者

make a popup demo /intro for a website

I wish to provide a quick demo about the contents of my website and how to use them in a proper way as soon as a user visits my page. I wish to give the demo using a popup type window at the top. 开发者_JAVA百科

I mean small information boxes informing user about the various steps one by one. Can anyone help me how to do this?


Look at the jQuery UI dialog, it's fully customisable, or consider using some sort of tool tip idea, when you mouse over a part of the page feedback to the user what the section in question is for (via hovering mouse overs etc).


One simple way to do this is with javascript.

Try this

<script type="text/javascript">
    alert("Hello world!");
</script>

visit this page for more information.


know this question is old but try intro.js

include js/css

 <link rel="stylesheet" href="css/introjs.min.css">
 <script type="text/javascript" src="jquery/intro.min.js"></script>

then on each item you want to show tutorial add the following

data-step="1" data-intro="Enter tip text"

 <div class="span6" data-step="1" data-intro="Click here for help">
 <div class="span6" data-step="2" data-intro="Click here for home page">
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜