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

Save Automatically?

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

              
                <style>@import url('https://fonts.googleapis.com/css2?family=Tajawal:[email protected];500;900&display=swap');</style>
																																		
<div class="row">	
	<div class="fifty rtl">
		<h1>
		مرحبًا يا عالم اللوريم إبسوم
		</h1>
		<hr>
		<h2>
			تصميم نيومورفي لزر لائحة الاعمال بإستخدام  (css) (html) (js) (jquery) 
			<br> 
			<small>
			مطابق للثييم الذي يتم استخدامه الان (2020) على موقع مدونة بلوغجنسيbloigency
			</small>
		</h2>
		<p>
			هذه الوظيفة مستوحاة من عينة لتصميم المفهوم، بواسطة ياش بهاغت كمصدر إلهام لتفعال زر سكيومورفي بإسم "Skeuomorph Button Interaction" <br> (Muzli - Design Inspiration، Medium، 2020)
		</p>
		<p>
			يمكنك تعلم المزيد حول "ما هي نيومورفيزم" و "الاختلاف بين نيومورفيزم ضد سكيومورفيزم ضد الشقة والمادية" على بلوغجنسي bloigency.
		</p>
	</div>
	<div class="fifty">	
		<h1>Hello World of Lorem Ipsum</h1>
		<hr>
		<h2>Nuemorphic design for an action menu button using CSS JS JQUERY
		<br>
			<small>
			Matching the current theme used now (2020) on bloigencyبلوغجنسي website.
			</small>
		</h2>
		<p>this functionality was inspired by a sample of concept design by <a href="https://dribbble.com/yashbhagat" rel="noopener">Yash Bhagat</a> as an inspiration for "Skeuomorph Button Interaction" 
<br>
(<a href="https://medium.muz.li/skeuomorphism-neumorphism-ui-trend-e7b78792bd21" rel="noopener">Muzli - Design Inspiration</a>,  Medium, 2020)</p>
		</p> you could learn more about "what is Nuemorphisim" and "the differenece between Nuemorphism vs skeumorphisim vs flat and material" on bloigency بلوغجنسي </p>
	</div>
</div>



<div class="actions-container">
	
		<div class="actions-collapse-button button">
			<i class="fas fa-ellipsis-h"></i>
		</div>
		
		<div class="actions-menu menu-3">
			<div class="action-button button top" id=""><i class="fas fa-share"></i></div>
			<div class="action-button button center" id=""><i class="fas fa-hand-holding-heart"></i></div>
			<div class="action-button button bottom" id=""><i class="fas fa-comment-dots"></i></div>
		</div>
	
</div>
              
            
!

CSS

              
                /*reset class for body*/
body{ 
	min-height: 100vh; 
	min-width: 100vw; 
	background-color: #FFF7FC;
	color: #2e1227;
	max-height: 100vh; 
	max-width: 100vw;
	height: 100vh; 
	width: 100vw;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: 'Tajawal', sans-serif;
	font-weight: 400;
}
h1{
	font-weight: 900;
	color: black;
}
h2{
	font-weight: 400;
}
hr{
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-top: 1.6px solid white !important;
	border-bottom: 1.6px solid #2e122734!important;
	box-shadow: 0px -6px 16px #2e122734, 0px 6px 10px #fff;
}
.row{
	max-width: 100vw;
	min-width: 100vw;
	width: 100vw;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: space-around;
}
.fifty{
	max-width: calc( 50vw - 16px );
	min-width: calc( 50vw - 16px );
	width: 50vw;
	margin: 0 8px;
}
.fifty.rtl{
	direction: rtl;
	margin: 0 8px;
}
.button{
	box-shadow: 4.3px 4.3px 3px #2e122743, -4.3px -4.3px 3.4px #FFFFFF;
	background-color: #FFF7FC !important;
	border: 2px solid white !important;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.button i{
	font-size: 20px;
	background-color: #2e1227cc;
  color: transparent;
  text-shadow: 2px 2px 4px #f7eff4aa;
  -webkit-background-clip: text;
     -moz-background-clip: text;
          background-clip: text;
}
/* classes */
div.actions-container{
/* 	background-color: green;
	height: 20vh;
	width: 20vh; */
	position: fixed;
	bottom: 0;
	right: 0;
	box-sizing: border-box;
	padding: 1vh;
	z-index: 77777777777777;
}

div.actions-collapse-button{
	background-color: blue;
	width: 49px;
	height: 49px;
	border-radius: 25px;
	position: fixed;
	bottom: 77px;
	right: 16px;
	z-index: 77777777777777;
}
div.actions-collapse-button.open{
	background-color: yellow;
}
div.actions-collapse-button i{transition: 0.34s; transform: rotate(0deg)}
div.actions-collapse-button.open i{transition: 0.34s; transform: rotate(90deg); background-color: #9900ff}
.action-button{
	width: 49px;
	height: 49px;
	border-radius: 25px;
	position: fixed;
	opacity: 0;
	bottom: 77px;
	right: 16px;
	transition: all 1.6s;
}

div.actions-menu.open .action-button{
	opacity: 1;
}
div.actions-menu.open.menu-3 .action-button.top{
	background-color: purple;
	bottom: calc( 120px + 43px);
	 right: calc(43px - 18px);
	z-index: 77777777776777;
	transition: all 1.6s;
	transition-delay: 0s;
}
div.actions-menu.open.menu-3 .action-button.center{
	background-color: teal;
	bottom: calc(100px + 43px);
	right: calc(100px - 18px);
	z-index: 77777777775777;
	transition: all 1.6s;
	transition-delay: 0.34s;
}
div.actions-menu.open.menu-3 .action-button.bottom{
	background-color: green;
	bottom: calc(43px + 43px);
	right: calc(120px - 18px);
	z-index: 77777777775777;
	transition: all 1.6s;
	transition-delay: 0.77s;
}

div.actions-menu.menu-3 .action-button.top{
	transition-delay: 0.77s;
}


div.actions-menu.menu-3 .action-button.center{
	transition-delay: 0.34s;
}

div.actions-menu.menu-3 .action-button.bottom{
	transition-delay: 0s;
}


/* @media only screen and (max-width: 576px){} */
              
            
!

JS

              
                $('.actions-collapse-button').click(function(){
  $('.actions-menu').toggleClass('open');
	$('.actions-collapse-button').toggleClass('open');
});
              
            
!
999px

Console