You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

demo.html 2.6 KiB

4 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. 
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <title>layer-更懂你的web弹窗解决方案</title>
  7. <style>
  8. html{background-color:#E3E3E3; font-size:14px; color:#000; font-family:'微软雅黑'}
  9. a,a:hover{ text-decoration:none;}
  10. pre{font-family:'微软雅黑'}
  11. .box{padding:20px; background-color:#fff; margin:50px 100px; border-radius:5px;}
  12. .box a{padding-right:15px;}
  13. #about_hide{display:none}
  14. .layer_text{background-color:#fff; padding:20px;}
  15. .layer_text p{margin-bottom: 10px; text-indent: 2em; line-height: 23px;}
  16. .button{display:inline-block; *display:inline; *zoom:1; line-height:30px; padding:0 20px; background-color:#56B4DC; color:#fff; font-size:14px; border-radius:3px; cursor:pointer; font-weight:normal;}
  17. .photos-demo img{width:200px;}
  18. </style>
  19. <script src="http://cdn.bootcss.com/jquery/1.12.3/jquery.min.js"></script>
  20. <script src="../dist/layer.js"></script>
  21. </head>
  22. <body>
  23. <div class="box">
  24. <pre>
  25. @Name:layer-v<script>document.write(layer.v)</script> 弹层组件说明
  26. @Author:贤心
  27. @Site:<a href="http://layer.layui.com/" target="_blank">http://layer.layui.com/</a>
  28. <strong>【注意事项】</strong>
  29. 一、使用时,请把文件夹layer整个放置在您站点的任何一个目录,只需引入layer.js即可,除jQuery外,其它文件无需再引入。
  30. 二、如果您的js引入是通过合并处理或者您不想采用layer自动获取的绝对路径,您可以通过layer.config()来配置(详见官网API页)
  31. 三、jquery需1.8+
  32. 四、更多使用说明与演示,请参见layer官网。
  33. 五、使用时请务必保留来源,请勿用于违反我国法律法规的web平台。
  34. 六、layer遵循MIT开源协议,将永久性提供无偿服务。
  35. </pre>
  36. </div>
  37. <div class="box" style="text-align:center">
  38. <a href="http://layer.layui.com/" target="_blank">更多示例</a>
  39. <a href="http://www.layui.com/doc/modules/layer.html" target="_blank">使用文档</a>
  40. <a href="http://fly.layui.com/" id="suggest">交流反馈</a>
  41. <a href="javascript:;" id="about">关于</a>
  42. </div>
  43. <script>
  44. ;!function(){
  45. //页面一打开就执行,放入ready是为了layer所需配件(css、扩展模块)加载完毕
  46. layer.ready(function(){
  47. layer.open({
  48. type: 2,
  49. title: '欢迎页',
  50. maxmin: true,
  51. area: ['800px', '500px'],
  52. content: 'http://layer.layui.com/test/welcome.html',
  53. end: function(){
  54. layer.tips('Hi', '#about', {tips: 1})
  55. }
  56. });
  57. });
  58. //关于
  59. $('#about').on('click', function(){
  60. layer.alert(layer.v + ' - 贤心出品 sentsin.com');
  61. });
  62. }();
  63. </script>
  64. </body>
  65. </html>