今天,我们来做一个花里胡哨 Tap bar ,先来看下最终效果:
接着,就把代码码起来了!
<div class="container">
<div class="bar">
<div class="bar-item pre-active" onclick="changeActive(this)">
<div class="bar-fluid"></div>
<div class="drop"></div>
<i class="far fa-calendar-alt"></i>
</div>
<div class="bar-item" onclick="changeActive(this)">
<div class="bar-fluid"></div>
<div class="drop"></div>
<i class="far fa-sticky-note"></i>
</div>
<div class="bar-item" onclick="changeActive(this)">
<div class="bar-fluid"></div>
<div class="drop"></div>
<i class="far fa-bell"></i>
</div>
<div class="bar-item" onclick="changeActive(this)">
<div class="bar-fluid"></div>
<div class="drop"></div>
<i class="far fa-address-book"></i>
</div>
</div>
</div>
在HTML代码中,"bar" 类是点击栏的容器,"bar-item"类是触发动画的按钮。现在接着码 css。
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.container {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #fc5c65;
}
.bar {
padding: 0px 10px;
display: flex;
align-items: center;
background-color: #ffffff;
border-radius: 10px 10px 20px 20px;
box-shadow: 3px 3px 0px 0px rgb(235 59 90);
}
.bar .bar-item {
position: relative;
overflow: hidden;
padding: 20px 25px;
cursor: pointer;
}
.bar .bar-item i {
z-index: 1;
position: relative;
color: #a4b0be;
transition: all .3s ease-in-out;
}
.bar .bar-item.pre-active i {
color: #fc5c65;
}
.bar .bar-item.active i {
color: #fc5c65;
animation: colour 1s ease-in-out;
}
.bar .bar-item.active .bar-fluid {
position: absolute;
top: 0px;
left: 0px;
background-color: #fc5c65;
width: 100%;
height: 0px;
animation: fluid 1s ease-in-out;
}
.bar .bar-item.active .bar-fluid:before {
content: '';
position: absolute;
top: 0px;
left: -50%;
background-color: #ffffff;
width: 110%;
height: 400%;
border-radius: 50%;
}
.bar .bar-item.active .bar-fluid:after {
content: '';
position: absolute;
top: 0px;
right: -50%;
background-color: #ffffff;
width: 110%;
height: 400%;
border-radius: 50%;
}
.bar .bar-item.active .drop {
position: absolute;
top: -2.5px;
left: 30.5px;
background-color: #fc5c65;
width: 2.5px;
height: 2.5px;
border-radius: 50%;
animation: drop 1s ease-in-out;
}
@keyframes colour {
0% { color: #a4b0be; }
55% {
color: #a4b0be;
transform: scale(1);
}
60% {
color: #fc5c65;
transform: scale(1);
}
70% { transform: scale(1.1); }
80% { transform: scale(1); }
}
@keyframes fluid {
0% { height: 0px; }
30% { height: 10px; }
100% { height: 0px; }
}
@keyframes drop {
20% { top: -2.5px; }
50% { top: 21px; }
51% { top: -2.5px; }
}
自己慢慢消化,不想消化直接做个CV工程师。
const preactiveItem = document.querySelector('.pre-active')
const barItems = document.querySelectorAll('.bar-item')
function changeActive (newActive) {
preactiveItem.classList.remove('pre-active')
barItems.forEach(element => {
element.classList.remove('active')
})
newActive.classList.add('active')
}
原文:https://dev.to/romaopedro199/tap-bar-with-liquid-animation-using-css-and-javascript-2l99
今天这篇文章就来讲讲使用JavaScript来实现这种分屏的视觉UI效果。现在在网站上这种分屏视觉效果应用的也非常广泛,比如 Corsair website。
在css中使用伪类虽然实现了样式的改变,但由于没有过渡效果会显得很生硬。以前如果要实现过渡,就需要借助第三方的js框架来实现。现在只需要使用CSS3的过渡(transition)功能,就可以从一组样式平滑的切换到另一组样式。
js最近有个小伙伴问到了怎么实现新手引导的效果,然后便去网上找了下实现方案。可以通过css的border来实现。
设计图含有斜切角的效果时,我们一般想到的方法是切出四个角为背景,然后用border连起来,这样就能显示出该效果了,那么直接使用css呢?下面就整理css做斜边的效果。
这篇文章在不使用任何插件的情况,以最简洁的原生javascript来实现打字机效果和跑马灯效果。打字效果即把一段话一个字一个字的显示出来。
一般遮罩加上透明度opacity就是阴影效果。阴影效果和一般遮罩一样,唯一不同的是设置.mask遮罩的背景色用rgba()表示,当然hsla()也是可以的。模糊效果(毛玻璃效果) 通过 filter来实现
主要运用的是1.border 组成的直角三角形。2,before 和 after 伪元素 。3,z-index属性;将元素的长宽设置为0,并且将border的3条边设置为透明的,就会出现border颜色的直角三角形
文字选中效果,这个可能很少有人注意过。在默认状态先一般选中的文本颜色是白字蓝底的,不过可以通过CSS进行设置。::selection定义元素上的伪选择器,以便在选定元素时设置其中文本的样式。
发布iPhone XR的时候 各种心动 去官网看了一遍又一遍。闲着无聊发现 里面的介绍很用大篇幅的有背景文字来介绍。Like this:看着挺酷炫的还不错 就看了下实现方式。还挺简单的。
多元素之间如何实现过渡动画效果呢?这么写行不行呢?肯定是不行的,因为 Vue 在两个元素进行切换的时候,会尽量复用dom,就是因为这个原因,导致现在动画效果不会出现。如果不让 Vue 复用dom的话,应该怎么做呢?只需要给这两个div不同的key值就行了
内容以共享、参考、研究为目的,不存在任何商业目的。其版权属原作者所有,如有侵权或违规,请与小编联系!情况属实本人将予以删除!