Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="cont_principal">
<div class="cont_menu">
  <div class="cont_titulo_menu" onclick="menu()">
<div class="cont_titulo">
    <h4>ACCOUNT SETTINGS</h4>
    </div>
    <div class="cont_icon_menu">
   <img src="http://danysantos.hol.es/img/planet.png" alt="" />
<div class="cont_circle_1"></div>
<div class="cont_circle_2"></div>
<div class="cont_circle_3"></div>
<div class="cont_circle_4"></div>
    </div>
  </div>
<div class="cont_icon_trg disable">
<svg width="46px" height="38px" viewBox="0 0 46 38" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  >
    <defs>
        <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-1">
            <feOffset dx="0" dy="-2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
            <feGaussianBlur stdDeviation="1.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.0813575634 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"></feColorMatrix>
            <feMerge>
                <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
                <feMergeNode in="SourceGraphic"></feMergeNode>
            </feMerge>
        </filter>
    </defs>
    <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
        <polygon id="Triangle-1" fill="#FFFFFF" filter="url(#filter-1)" sketch:type="MSShapeGroup" points="23 7 39 24 7 24 "></polygon>
    </g>
</svg></div>
<div class="cont_drobpdown_menu disable" >

  <ul>
  <li><a href="#">Profile Information</a></li>
 <li><hr /></li>
  <li><a href="#">Change Password</a></li>
</ul>
  
  </div> 
  </div> 
</div>
              
            
!

CSS

              
                * {
  margin: 0px auto;
  padding: 0px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.cont_principal {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(224, 232, 245, 1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(224, 232, 245, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(224, 232, 245, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e8f5',GradientType=0 );
}

.cont_menu {
  display: flex;
  width: 320px;
  flex-direction: column;
}

.cont_titulo_menu {
  position: relative;
  float: left;
  display: flex;
  width: 100%;
  height: 60px;
  overflow: hidden;
  background-color: #4f7df5;
  box-shadow: 0px 7px 30px -12px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cont_icon_menu {
  display: flex;
  position: relative;
  float: right;
  align-self: center;
  justify-content: center;
  align-items: center;
}
.cont_icon_menu > img {
  width: 32px;
  z-index: 2;
  position: relative;
}
.cont_titulo {
  position: relative;
  float: left;
  margin-top: 20px;
  margin-left: 20px;
  color: #fff;
}

.cont_circle_1 {
  position: absolute;
  width: 64px;
  height: 64px;
  background-color: #fff;
  opacity: 0.3;
  z-index: 0;
  border-radius: 50%;
  animation: animation_circle_1 3s infinite;
  animation-direction: alternate;
  transform: scale(0);
}
.cont_circle_2 {
  position: absolute;
  width: 128px;
  height: 128px;
  background-color: #fff;
  opacity: 0.2;
  z-index: 0;
  border-radius: 50%;
  animation: animation_circle_1 3s infinite;
  animation-direction: alternate;
  animation-delay: 0.5s;
  transform: scale(0);
}
.cont_circle_3 {
  position: absolute;
  width: 192px;
  height: 192px;
  background-color: #fff;
  opacity: 0.1;
  z-index: 0;
  border-radius: 50%;
  animation: animation_circle_1 3s infinite;
  animation-direction: alternate;
  animation-delay: 1s;
  transform: scale(0);
}
.cont_circle_4 {
  position: absolute;
  width: 256px;
  height: 256px;
  background-color: #fff;
  opacity: 0.1;
  z-index: 0;
  border-radius: 50%;
  animation: animation_circle_1 3s infinite;
  animation-direction: alternate;
  animation-delay: 1.5s;
  transform: scale(0);
}

@-webkit-keyframes animation_circle_1 {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@-o-keyframes animation_circle_1 {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@-moz-keyframes animation_circle_1 {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes animation_circle_1 {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.cont_drobpdown_menu {
  position: relative;
  float: left;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 2px 20px -2px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
  border-radius: 3px;
  opacity: 1;
  transition: opacity 500ms;
}
.cont_drobpdown_menu ul > li {
  list-style: none;
  margin-left: -3px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #eee;
  width: 100%;
  display: block;
  transition: all 500ms;
}
.cont_drobpdown_menu ul > li:hover {
  border-left: 5px solid #6992fe;
}
.cont_drobpdown_menu ul > li:hover > a {
  color: #6992fe;
}

.cont_drobpdown_menu ul > li:nth-child(2) {
  border: none;
}
.cont_drobpdown_menu ul > li > a {
  position: relative;
  display: block;
  width: 90%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  color: #c4d0de;
}
.cont_drobpdown_menu ul > li > hr {
  width: 75%;
  height: 0px;
  color: #123455;
  background-color: #123455;
  border: 1px solid #eee;
}

.cont_drobpdown_menu.active ul > li {
}

.cont_icon_trg {
  position: relative;
  float: left;
  aling-self:start;
  margin-bottom: -30px;
  z-index: 1;
  left: 10px;
  transform: translate(0px, 10px);
  transition: all 0.5s;
}

.disable {
  transition: all 0.5s;
  opacity: 0;
  transform: translate(0px, 10px);
}

.disable > ul > li {
  transform: translate(0px, 10px);
  opacity: 0;
}

.active {
  opacity: 1;
  transform: translate(0px, 0px);
}

.active > ul > li {
  transform: translate(0px, 0px);
  opacity: 1;
}

              
            
!

JS

              
                let c = 0;
function menu(){
  if(c % 2 == 0) {
document.querySelector('.cont_drobpdown_menu').className = "cont_drobpdown_menu active";    
document.querySelector('.cont_icon_trg').className = "cont_icon_trg active";    
c++; 
  }else{
document.querySelector('.cont_drobpdown_menu').className = "cont_drobpdown_menu disable";        
document.querySelector('.cont_icon_trg').className = "cont_icon_trg disable";        
c++;
  }
}
              
            
!
999px

Console