create account

Flexible Box Hover Effect With CSS&HTML | (Turkish Video Tutorial) by rdvn

View this thread on: hive.blogpeakd.comecency.com
· @rdvn · (edited)
$25.07
Flexible Box Hover Effect With CSS&HTML | (Turkish Video Tutorial)
### Details
<br> 


**Tutorial about:** Flexible Box Hover Effect With CSS&HTML  codes. ( Turkish Video Tutorial)
**Video  Language :** Turkish Language 
**Githup link:** You can download all files -->  [CSS Education](https://github.com/rdvnn/css-education)
>**Cascading Style Sheets (CSS) is a simple mechanism for adding style (e.g., fonts, colors, spacing) to Web documents. [CSS More Information](https://www.w3.org/Style/CSS/)**

### What We Can Learn?
We going to  learn how to create flexible box hover effect with CSS& and how to  call  images , container , box and how to add background images, text,transform, , margin,padding value  with CSS&HTML codes in this video.

### We Learn About
- Opacity
- Flex Grow
- Line Height
- Border
- Hover
- Transition
- Transform
- Text Transform
- Uppercase



### Requirements
**1-** ATOM Program
**2-** Basic ATOM,  usage information.
**3-** Basic CSS code knowledge.
**4-** Basic HTML code knowledge.

### My Operating System
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1516379881/libdd6r5olbo0zfe18ct.png)

### Difficulty
- Intermediate  Level

### Technical Aspects
- Opacity - Letter Spacing- Box Shadow-Rotate- Flex Grow -Line Height - Position  - Absolute - Transform  - Transition -Box sizing.

### Description
We talked about  how to create Flexible Box Hover Effect With CSS&HTML and how to add opacity ,font family,span,border box,transform .I describe the CSS and HTML in video.Also My github repository is [HERE](https://github.com/rdvnn/css-education) I added these all code,information my github repository.You can reach all files from my repository.
Also with CSS and HTML codes we are continue  a series 

**Video Tutorial - Turkish Language - 720p**
https://youtu.be/16mEcn5fsIk
[Using IMG Source1](https://pixabay.com/en/strawberries-fruit-red-ripe-sweet-1396330/)
[Using IMG Source2](https://pixabay.com/en/food-photography-salad-leaves-2834549/)
[Using IMG Source3](https://pixabay.com/en/japan-landscape-spring-plant-2218788/)
[Using IMG Source4](https://pixabay.com/en/christmas-tree-ornament-deco-light-3023415/)
[Using IMG Source5](https://pixabay.com/en/persian-oak-wood-parrotia-persica-3064187/)


### Curriculum
[Horizontal Menu](https://utopian.io/utopian-io/@rdvn/creating-soft-transition-and-horizontal-menu-or-with-atom-turkish-video-tutorial)
[Vertical Menu](https://utopian.io/utopian-io/@rdvn/vertical-menu-with-atom-or-turkish-video-tutorial)
[Image Slider](https://utopian.io/utopian-io/@rdvn/image-slider-with-css-or-turkish-video-tutorial)
[ Contact Form ](https://utopian.io/utopian-io/@rdvn/create-contact-form-with-css-and-html-or-turkish)
### [ATOM OFFICIAL WEBSITE](https://atom.io/) & [GITHUB REPOSITORY](https://github.com/atom/atom) & [MY GITHUB REPOSITORY](https://github.com/rdvnn/css-education)

### And More Details About Video <br>

### Github Repository
![12.jpg](https://res.cloudinary.com/hpiynhbhq/image/upload/v1517129967/mafczhhguxifeluhnrfu.jpg)


### CSS Codes1
![CSS Codes1 @rdvn.jpg](https://res.cloudinary.com/hpiynhbhq/image/upload/v1517128435/sowyqrp2rbanjmvdcbia.jpg)


### CSS Codes2
![CSS Codes2 @rdvn.jpg](https://res.cloudinary.com/hpiynhbhq/image/upload/v1517128232/xs5whidwvjm8qbptyjcx.jpg)


### HTML Codes
![HTML Codes @rdvn.jpg](https://res.cloudinary.com/hpiynhbhq/image/upload/v1517128309/f7jx2ej2fnemr2nzqrlv.jpg)


### CSS&HTML CODES
```
body
{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
.container
{
  width: 100vw;
  height: 100vh;
  display: flex;
  box-sizing: border-box;
}
.container .box
{
  width: 20vw;
  text-align: center;
  line-height: 100vh;
  flex-grow: 1;
  background-size: cover;
  background-position: center;
  transition: 1s;
}
h1
{
  margin: 0;
  padding: 0;
  line-height: 100vh;
  font-size: 2em;
  background: rgba(0,0,0,.8);
  transition: .5s;
}
h1 span
{
  background: rgba(255, 255, 255, 0);
  width: 100%;
  transition: 1s;
  color: #fff;
  padding: 25px 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.box:hover h1 span
{
  color: #262626;
  background: rgba(255,255,255,.8);
  letter-spacing: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,.5);
}
.box:hover h1
{
  background: rgba(0,0,0,0);
}
.box:hover
{
  width: 40vw;
}
.container .box:nth-child(1)
{
  background: url(1.jpg);
}
.container .box:nth-child(2)
{
  background: url(2.jpg);
}
.container .box:nth-child(3)
{
  background: url(3.jpg);
}

.container .box:nth-child(4)
{
  background: url(4.jpg);
}

.container .box:nth-child(5)
{
  background: url(5.jpg);
}


```
-----
```
<!doctype html>
<html>
<head>
      <meta charset="utf-8"
      <title="Esnek kutu efekti"</title>
      <link rel="stylesheet" href="style.css">
    </head>
    <body>
      <div class="container">
        <div class="box"><h1><span>One</span></h1></div>
        <div class="box"><h1><span>Two</span></h1></div>
        <div class="box"><h1><span>Three</span></h1></div>
        <div class="box"><h1><span>Four</span></h1></div>
        <div class="box"><h1><span>Five</span></h1></div>
      </div>

</body>
</html>


```

<br>
--------------------------
-----------------------------

Author : @rdvn


<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@rdvn/flexible-box-hover-effect-with-css-and-html-or-turkish-video-tutorial">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , ,
properties (23)
authorrdvn
permlinkflexible-box-hover-effect-with-css-and-html-or-turkish-video-tutorial
categoryutopian-io
json_metadata{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":118250605,"name":"css-education","full_name":"rdvnn/css-education","html_url":"https://github.com/rdvnn/css-education","fork":false,"owner":{"login":"rdvnn"}},"pullRequests":[],"platform":"github","type":"video-tutorials","tags":["utopian-io","utopian-io","videotutorial"],"users":["rdvn","rdvn.jpg"],"links":["https://github.com/rdvnn/css-education","https://www.w3.org/Style/CSS/","https://res.cloudinary.com/hpiynhbhq/image/upload/v1516379881/libdd6r5olbo0zfe18ct.png","https://pixabay.com/en/strawberries-fruit-red-ripe-sweet-1396330/","https://pixabay.com/en/food-photography-salad-leaves-2834549/","https://pixabay.com/en/japan-landscape-spring-plant-2218788/","https://pixabay.com/en/christmas-tree-ornament-deco-light-3023415/","https://pixabay.com/en/persian-oak-wood-parrotia-persica-3064187/","https://utopian.io/utopian-io/@rdvn/creating-soft-transition-and-horizontal-menu-or-with-atom-turkish-video-tutorial","https://utopian.io/utopian-io/@rdvn/vertical-menu-with-atom-or-turkish-video-tutorial","https://utopian.io/utopian-io/@rdvn/image-slider-with-css-or-turkish-video-tutorial","https://utopian.io/utopian-io/@rdvn/create-contact-form-with-css-and-html-or-turkish","https://atom.io/","https://github.com/atom/atom","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517129967/mafczhhguxifeluhnrfu.jpg","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517128435/sowyqrp2rbanjmvdcbia.jpg","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517128232/xs5whidwvjm8qbptyjcx.jpg","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517128309/f7jx2ej2fnemr2nzqrlv.jpg"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1516379881/libdd6r5olbo0zfe18ct.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517129967/mafczhhguxifeluhnrfu.jpg","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517128435/sowyqrp2rbanjmvdcbia.jpg","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517128232/xs5whidwvjm8qbptyjcx.jpg","https://res.cloudinary.com/hpiynhbhq/image/upload/v1517128309/f7jx2ej2fnemr2nzqrlv.jpg"],"moderator":{"account":"jestemkioskiem","time":"2018-02-01T15:40:18.734Z","reviewed":false,"pending":false,"flagged":true}}
created2018-01-28 09:01:03
last_update2018-02-01 15:40:18
depth0
children4
last_payout2018-02-04 09:01:03
cashout_time1969-12-31 23:59:59
total_payout_value17.372 HBD
curator_payout_value7.699 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,347
author_reputation12,487,610,583,231
root_title"Flexible Box Hover Effect With CSS&HTML | (Turkish Video Tutorial)"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,953,353
net_rshares3,723,375,587,090
author_curate_reward""
vote details (8)
@gerginho ·
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
properties (22)
authorgerginho
permlinkre-rdvn-flexible-box-hover-effect-with-css-and-html-or-turkish-video-tutorial-20180128t133818439z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-01-28 13:38:21
last_update2018-01-28 13:38:21
depth1
children1
last_payout2018-02-04 13:38:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation3,574,684,637,492
root_title"Flexible Box Hover Effect With CSS&HTML | (Turkish Video Tutorial)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,008,560
net_rshares0
@rdvn ·
Thank you .
properties (22)
authorrdvn
permlinkre-gerginho-re-rdvn-flexible-box-hover-effect-with-css-and-html-or-turkish-video-tutorial-20180129t001948891z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-29 00:19:51
last_update2018-01-29 00:19:51
depth2
children0
last_payout2018-02-05 00:19:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation12,487,610,583,231
root_title"Flexible Box Hover Effect With CSS&HTML | (Turkish Video Tutorial)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,137,682
net_rshares0
@jestemkioskiem ·
Your contribution cannot be approved because it does not follow the [Utopian Rules](https://utopian.io/rules).

>If you create a GitHub repository with additional material (like code samples), make sure to choose the repository of the project your tutorial is about and not your own repository. You can provide links to your repository in your post.

This is not the official repository of the project.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
properties (22)
authorjestemkioskiem
permlinkre-rdvn-flexible-box-hover-effect-with-css-and-html-or-turkish-video-tutorial-20180201t144027196z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-01 15:40:27
last_update2018-02-01 15:40:27
depth1
children0
last_payout2018-02-08 15:40:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length521
author_reputation41,292,066,961,817
root_title"Flexible Box Hover Effect With CSS&HTML | (Turkish Video Tutorial)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,162,090
net_rshares0
@utopian-io ·
### Hey @rdvn I am @utopian-io. I have just upvoted you!
#### Achievements
- You have less than 500 followers. Just gave you a gift to help you succeed!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
authorutopian-io
permlinkre-rdvn-flexible-box-hover-effect-with-css-and-html-or-turkish-video-tutorial-20180128t200258017z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-01-28 20:02:57
last_update2018-01-28 20:02:57
depth1
children0
last_payout2018-02-04 20:02:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,080
author_reputation152,955,367,999,756
root_title"Flexible Box Hover Effect With CSS&HTML | (Turkish Video Tutorial)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,089,220
net_rshares0