tailwind实现pc端房产交易置换平台ui效果代码
代码语言:html
所属分类:布局界面
代码描述:tailwind实现pc端房产交易置换平台ui效果代码
代码标签: tailwind pc端 房产 交易 置换 平台 ui
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<html lang="en" class="h-full"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/tailwindcss.3.4.16.js"></script> <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/lucide.min.js"></script> <style> body{font-family:'Inter',sans-serif} input[type=range]::-webkit-slider-thumb{ -webkit-appearance:none; appearance:none; height:14px;width:14px; border-radius:9999px; background:#1a1a1a;cursor:pointer;border:1px solid #e5e7eb; box-shadow:0 1px 2px rgba(0,0,0,0.08);margin-top:-5px} input[type=range]::-moz-range-thumb{ height:14px;width:14px; border-radius:9999px; background:#1a1a1a;cursor:pointer;border:1px solid #e5e7eb; box-shadow:0 1px 2px rgba(0,0,0,0.08)} input[type=range]::-webkit-slider-track{ background:#e5e7eb;height:3px;border-radius:1.5px} .shadow-card{ box-shadow: 0px 1px 1px rgba(0,0,0,0.03), 0px 3px 6px rgba(0,0,0,0.02); } .shadow-hover{ box-shadow: 0px 1px 1px rgba(0,0,0,0.05), 0px 3px 6px rgba(0,0,0,0.04), 0px 8px 24px rgba(0,0,0,0.03); } .animate-fade-in{ animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; } .animate-slide-up{ animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; } .animate-slide-right{ animation: slideRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; } .animate-slide-left{ animation: slideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; } .animate-scale-in{ animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; } @keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideRight { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } } @keyframes slideLeft { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } } @keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } .delay-100{animation-delay:0.1s} .delay-200{animation-delay:0.2s} .delay-300{animation-delay:0.3s} .delay-400{animation-delay:0.4s} .delay-500{animation-delay:0.5s} .delay-600{animation-delay:0.6s} .delay-700{animation-delay:0.7s} .delay-800{animation-delay:0.8s} .delay-900{animation-delay:0.9s} .delay-1000{animation-delay:1.0s} .opacity-0{opacity:0} </style> </head> <body class="min-h-full flex items-center justify-center sm:p-4 pt-3 pr-3 pb-3 pl-3 bg-neutral-950"> <div class="spline-container fixed top-0 w-full h-screen -z-10 hue-rotate-180"><iframe src="https://my.spline.design/aidatamodelinteraction-mdTL3FktFVHgDvFr5TKtnYDV" frameborder="0" width="100%" height="100%"></iframe></div> <div class="spline-container fixed top-0 w-full h-screen -z-10 hue-rotate-180"></div> <div class="spline-container fixed top-0 w-full h-screen -z-10 hue-rotate-180">&.........完整代码请登录后点击上方下载按钮下载查看
网友评论0