Jump to content
×
×
  • Create New...

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

  • Bu Alana Reklam Verebilirsiniz
    Bu Alana Reklam Verebilirsiniz

Kabartmalı İcon Yapımı Örneği Ve Kodları | HTML + CSS

Rate this topic


programYaz

Recommended Posts

Kabartmalı İcon Yapımı Örneği Ve Kodları | HTML + CSS
  • Members

Bu yazımızda web sitelerinize güzel bir hava katacak, HTML ve CSS ile kabartmalı icon tasarımı yapacağız. Ön izlememizi görelim.

 

HTML-ve-CSS-ile-Kabarmali-Icon-Tasarimi.gif

 

Önemli : İkonların kullanılabilmesi için FontAwasome Javascript dosyasını sitenize entegre etmeniz gerekmektedir. Buraya tıklayarak, FontAwasome.com sitesinden gerekli bilgi ve dosyayı alabilirsiniz.

Artık koda geçebiliriz :

 

HTML KODLARI: 

<div class="icons">
        <a>
            <i class="fab fa-codepen"></i>
        </a>

        <a>
            <i class="fab fa-github"></i>
        </a>

        <a>
            <i class="fab fa-instagram"></i>
        </a>
</div>

 

 

CSS KODLARI:

* {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        body{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100vw;
            height: 100vh;
            background-color: #D4DBE8;
        }

        .icons{
            margin-top: 2.3em;
            display: flex;
        }

        a:hover{
            cursor: pointer;
        }




        .icons i{
            opacity: 0.7;
            margin-left: 1.3em;
            font-size: 1.8em;
            transition: 0.2s;
            padding: 0.65em;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #d4dbe8;
            box-shadow: -11px -11px 25px rgba(255, 255, 255, 0.35),
            11px 13px 25px rgba(165, 181, 208, 0.738227);
        }

        .icons i:hover{
            opacity: 1;
            border-radius: 50%;
            background: #d4dbe8;
            transform: scale(1.1);
            mix-blend-mode: normal;
            box-shadow: -11px -11px 22px rgba(255, 255, 255, 0.524448),
            11px 13px 22px rgba(166, 181, 208, 0.929496),
            inset -11px -11px 28px rgba(255, 255, 255, 0.692936),
            inset 11px 11px 28px rgba(166, 181, 208, 0.856261),;

         }

 

Ada LoveLace

Link to comment
https://weblep.com/topic/191-kabartmal%C4%B1-i%CC%87con-yap%C4%B1m%C4%B1-%C3%B6rne%C4%9Fi-ve-kodlar%C4%B1-html-css/
Share on other sites


Konu Altı Reklam 1
Konu Altı Reklam 2
  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Posted Images

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...