Skip to content

Instantly share code, notes, and snippets.

View yessGlory17's full-sized avatar
:octocat:
odaklanma

Özgür yessGlory17

:octocat:
odaklanma
View GitHub Profile
@yessGlory17
yessGlory17 / index.html
Created July 23, 2019 14:30
Vue.js Twitter Project
<meta name="viewport" content="width=device-width">
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"/>
<div id="app">
<center>
<!-- Navbar -->
<div class="ui secondary pointing menu" id="nav">
<a class="active blue item">
<i class="home icon"></i>
@yessGlory17
yessGlory17 / index.html
Created September 26, 2019 15:35
Navigation Bar Vuejs
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://cdn.lineicons.com/1.0.1/LineIcons.min.css">
<div id="app">
<div class="navbar">
<div class="colum">
<div class="home" >
<i class="lni-home size-md ":class=" { 'lni-tada-effect' : showHome } " id="home" @click="showHome = !showHome"></i>
<h4 v-if="showHome" style="margin-top: 8px; color: #ffff;"> Home </h4>
</div>