什么你是学html的表情,表情.html



CSS3脸部表情鼠标控制特效 - A5源码

:root {

--eye-height: 32px;

--left-eye-x: 50px;

--right-eye-x: 150px;

}

body {

display: flex;

align-items: center;

justify-content: center;

height: 90vh;

width: 90%;

background-color: hsl(100, 50%, 50%)

}

.blob {

height: 150px;

width: 235px;

background-color: hsl(100, 50%, 80%);

position: relative;

border-radius: 25px;

box-shadow: 5px 5px 10px hsl(100, 50%, 35%);

cursor: pointer;

border: 5px solid black;

}

.blob * {

position: absolute;

}

.eyes {

top: var(--eye-height);

transition: 0.10s;

}

.mouth, .eye {

background-color: hsl(0, 0%, 25%);

}

.eye {

position: absolute;

height: 30px;

width: 30px;

border-radius: 100%;

transition: 0.10s;

}

.left-eye {

left: var(--left-eye-x);

}

.right-eye {

left: var(--right-eye-x);

}

.mouth {

top: 90px;

height: 20px;

width: 60px;

left: 85px;

border-radius: 0 0 100% 100%;

}

.blob:hover .eye {

height: 5px;

border-radius: 0;

}

.blob:hover .eyes {

top: 45px;

}

.blob.look-up .eyes {

top: calc(var(--eye-height) - 8px);

}

.blob.look-down .eyes {

top: calc(var(--eye-height) + 10px)

}

.blob.look-left .left-eye {

left: calc(var(--left-eye-x) - 10px);

}

.blob.look-left .right-eye {

left: calc(var(--right-eye-x) - 10px);

}

.blob.look-right .left-eye {

left: calc(var(--left-eye-x) + 10px);

}

.blob.look-right .right-eye {

left: calc(var(--right-eye-x) + 10px);

}

/*

How can geometry

bear affection?

It's the purest love:

projection.

*/

const animationType = 'headShake'

const blob = document.querySelectorAll('.blob')[0];

const body = document.getElementsByTagName('body')[0];

blob.addEventListener('mouseenter', () => {

blob.classList.add(animationType);

});

blob.addEventListener('mouseleave', () => {

blob.classList.remove(animationType);

});

body.addEventListener('mousemove', (e) => {

if (e.clientY < blob.offsetHeight) {

blob.classList.add('look-up');

} else {

blob.classList.remove('look-up');

}

if (e.clientY > (blob.offsetHeight + 150)) {

blob.classList.add('look-down');

} else {

blob.classList.remove('look-down');

}

if (e.clientX < (blob.offsetLeft)) {

blob.classList.add('look-left');

} else {

blob.classList.remove('look-left');

}

if (e.clientX > (blob.offsetLeft + 235)) {

blob.classList.add('look-right');

} else {

blob.classList.remove('look-right');

}

});

一键复制

编辑

Web IDE

原始数据

按行查看

历史

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值