当前位置:   article > 正文

JS特效第137弹:jQuery仿空间留言时间轴特效

JS特效第137弹:jQuery仿空间留言时间轴特效

         jQuery仿空间留言时间轴特效,先来看看效果:

        一部分关键的代码如下:

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>jQuery仿空间留言时间轴特效 - php中文网</title>
  6. <style>
  7. *{margin:0;padding:0}
  8. body{font-size:14px;font-family:"微软雅黑";background:url("images/2.jpg")top no-repeat;background-attachment:fixed;z-index:0;background-size:100%;}
  9. .box{width:960px;height:2000px;margin:100px auto;position:relative;z-index:1;}
  10. /*内容发布区域*/
  11. .box .boxcenter{width:500px;height:200px;background:#fff;position:absolute;top:80px;left:180px;border:1px solid green;border-radius:6px;}
  12. .box .boxcenter .boxc_t{height:30px;line-height:30px;}
  13. .box .boxcenter .boxc_t h4{padding-left:20px;background:#3BBFB4;border-top-left-radius:6px;
  14. border-top-right-radius:6px;}
  15. .box .boxcenter .boxc_c{width:460px;height:100px;border:1px solid #A6C8FF;margin:8px auto;text-indent:10px;box-shadow:0 0 4px #A6C8FF;}
  16. .box .boxcenter .boxc_b{width:80px;height:30px;position:absolute;right:10px;bottom:8px;}
  17. .box .boxcenter .boxc_b a{font-size:14px;color:#fff;line-height:30px;background:#3bbfb4;border-radius:6px;
  18. display:block;text-align:center;text-decoration:none;}
  19. .box .boxcenter .boxc_b a:hover{background:#2C8E86;}
  20. .box .timeline{width:60px;height:100%;position:absolute;top:100px;left:80px;border-right:2px solid #5d7895;}/**/
  21. .timeline .timeline_t{width:50px;height:50px;border-radius:50%;border:1px solid #fff;background:url("images/100.png")no-repeat;background-size:100%;}
  22. .timeline .nextbox{width:380px;height:80px;position:absolute;top:260px;left:60px;}
  23. .a{width:380px;height:80px;background:#fff;border-radius:6px;margin-top:30px;font-size:16px;line-height:20px;text-indent:20px;word-break:break-all;position:relative;left:6px;}
  24. .a .b{width:6px;height:6px;border-radius:50%;border:2px solid #fff;background:#9DCFE1;position:absolute;top:35px;left:-10px;}
  25. #time{font-size:20px;color:#ababab;}
  26. #hour{font-size:12px;color:#92CADE;}
  27. </style>
  28. </head>
  29. <body>
  30. <div class="box">
  31. <!--内容发布区域-->
  32. <div class="boxcenter">
  33. <div class="boxc_t"><h4>随便说点什么吧...</h4></div>
  34. <div class="boxc_c" contenteditable="true" id="aa"></div>
  35. <div class="boxc_b"><a href="#">发布</a></div>
  36. </div>
  37. <!--时光轴线-->
  38. <div class="timeline">
  39. <div class="timeline_t">
  40. </div>
  41. <div class="nextbox"></div>
  42. </div>
  43. </div>
  44. <script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
  45. <script>
  46. $(function(){
  47. $(".box").find(".boxc_b").click(function(){
  48. var center = $(".boxc_c").text();//.appendTo("nextbox");
  49. if(center==""){
  50. alert("请输入内容喔!");
  51. return;
  52. }
  53. $(".nextbox").prepend("<div class='a'>"+
  54. "<div class='b'></div>"+
  55. "<span id='time'>"+year+"-"+
  56. month+"-"+
  57. day+"&nbsp;&nbsp;"+
  58. "<span id='hour'>"+hour+":"+min+"</span>"+
  59. "</span>"+
  60. "<br>"+
  61. "<p style='padding:4px'>"+center+"</p>"+
  62. "</div>");
  63. $(".boxc_c").text("");
  64. });
  65. //alert(1);
  66. $(".boxc_c").keydown(function(event){
  67. var len =$(".boxc_c").text().length;
  68. if(len > 70){
  69. alert("够了,你别输入了,哪儿那么多话儿!");
  70. }
  71. });
  72. var dateDom = new Date();
  73. //获取本地时间,年月日时分
  74. var year = dateDom.getFullYear();
  75. var month = dateDom.getMonth()+1;
  76. var day = dateDom.getDate();
  77. var hour = dateDom.getHours();
  78. var min = dateDom.getMinutes();
  79. });
  80. </script>
  81. <div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';">
  82. <p>适用浏览器:360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗. 不支持IE8及以下浏览器。</p>
  83. <p>来源:<a href="https://www.php.cn" target="_blank">php中文网</a></p>
  84. </div>
  85. </body>
  86. </html>

        全部代码:jQuery仿空间留言时间轴特效

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/90958
推荐阅读
相关标签
  

闽ICP备14008679号