gsap实现逼真软体果冻按钮交互代码
代码语言:html
所属分类:动画
代码描述:gsap实现逼真软体果冻按钮交互代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
/* background-color: #111317; */
background-color: #b1b3c0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
min-height: 100%;
min-height: 100svh;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
overflow: hidden;
text-align: center;
line-height: 1.8;
min-width: 380px;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0