Skip to content

Prendki/Bubbles-Canvas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Bubbles-Canvas

Include Library (In Header)

<script src="https://code.jquery.com/jquery-2.2.4.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/canvasjs/1.7.0/canvasjs.min.js"></script>

Include Java Scipt (End of Body)

<script src="script.js"></script>

HTML

<section id="s_backgroundSection">
  <canvas id="canvas" name="bubble"></canvas>
</section>

CSS

  #s_backgroundSection {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Double images background */
    /*background-image: url(../images/backgrond-top.png), url(../images/background-bottom.png);*/
    /* Solid background */
    background-color:#1e90ff;
    background-size: contain,cover;
    background-position: bottom,bottom;
    background-repeat: no-repeat,no-repeat;
    background-attachment: fixed;
  }
   //Pull background elements on bottm
  #s_backgroundSection #canvas {
    z-index: 0;
    max-width: 100%;
  }
  //Pull Other elements on top layer
  section,nav,footer {
    position:relative;
    z-index:1;
  }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published