Advertisement
naimul64

second_page

Feb 28th, 2017
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: insan
  4. Date: 1/3/17
  5. Time: 4:06 PM
  6. --%>
  7.  
  8. <%@ page contentType="text/html;charset=UTF-8" %>
  9. <!DOCTYPE html>
  10. <html>
  11. <head>
  12. <title>SureCash Stipend Disbursement</title>
  13. <link href="${resource(dir: 'css', file: 'bootstrap.min.buttonAndGlyph.css')}" rel="stylesheet">
  14. <style type="text/css">
  15.  
  16. html, body {
  17. height: 100%;
  18. margin: 0px;
  19. padding: 0px;
  20. background-color: #ffd32f;
  21. }
  22.  
  23. #bg-image {
  24. height: 100vh;
  25. width: auto;
  26. vertical-align: top;
  27. /*text-align: center;*/
  28. display: block;
  29. margin: 0 auto
  30. }
  31.  
  32. #btn-logout {
  33. position: fixed;
  34. padding: 5px;
  35. Top: 0;
  36. right: 0;
  37. z-index: 999;
  38. height: 8vh;
  39. width: 10%;
  40. font-size: 4vh;
  41. }
  42.  
  43. </style>
  44. <script src="../js/jquery-1.9.1.min.js"></script>
  45. </head>
  46.  
  47. <body style="height: 100%">
  48.  
  49. <div id="parent">
  50. <div id="inner">
  51. <img id="bg-image" src="${resource(dir: 'images', file: 'Stipend web temp27022017.gif')}"/>
  52. <g:link controller="authentication" action="logout">
  53. <button type="button" class="btn btn-warning" id="btn-logout" data-toggle="tooltip" data-placement="right" title="Log Out">
  54. <span class="glyphicon glyphicon-log-out" aria-hidden="true"></span>
  55. </button>
  56. </g:link>
  57.  
  58. </div>
  59. </div>
  60. <script>
  61. $(document).ready(function () {
  62. console.log('Document ready');
  63. setTimeout(changeImage, 7000);
  64. });
  65.  
  66. function changeImage() {
  67. console.log('image gonna change...');
  68. $('#bg-image').fadeOut(500, function () {
  69. $('#bg-image').attr('src', "../images/pm_stipend_disb_3.png");
  70. $('#bg-image').fadeIn(500);
  71. });
  72. }
  73. </script>
  74. </body>
  75. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement