CSS 彩虹按钮效果

复制代码
<template>
	<view class="content">
	  <button class="btn">彩虹按钮</button>
	</view>
</template>

<script>

</script>

<style>
	body{
		background-color: #000;
	}
	.content {
		margin-top: 300px;
	
	}

	
	.btn {
	  width: 170px;
	  height: 60px;
	  font-size: 18px;
	  background: #fff;
	  border: none;
	  border-radius: 50px;
	  color: #000;
	  outline: none;
	  cursor: pointer;
	  transition: all 0.4s;
	  align-items: center;
	  display: flex;
	  justify-content: center;
	}
	
	.btn:hover {
	  box-shadow: inset 0 0 0 4px #ef476f, 
	              inset 0 0 0 8px #ffd166, 
	              inset 0 0 0 12px #06d6a0,
	              inset 0 0 0 16px #118ab2;
	  background: #073b4c;
	  color: #fff;
	}
</style>
相关推荐
sunshine6414 分钟前
JS实现悬浮可拖拽vue组件封装
开发语言·前端·javascript
lichong95112 分钟前
《postman、apipost、smartApi 等使用与特点 3 天路线图(可打印 PDF+互动脑图)》
前端·测试工具·macos·pdf·postman·大前端·大前端++
4***721313 分钟前
【HTML+CSS】使用HTML与后端技术连接数据库
css·数据库·html
怪我冷i15 分钟前
es6与es5的模块区别
前端·ecmascript·es6·ai写作
一 乐17 分钟前
助农服务系统|基于SprinBoot+vue的助农服务系统(源码+数据库+文档)
前端·数据库·vue.js
by__csdn19 分钟前
Vue 2 与 Vue 3:深度解析与对比
前端·javascript·vue.js·typescript·vue·css3·html5
s***353022 分钟前
怎么下载安装yarn
android·前端·后端
q***649722 分钟前
Spring boot整合quartz方法
java·前端·spring boot
行走的陀螺仪23 分钟前
Vue3远程加载阿里巴巴字体图标实时更新方案
前端·icon·字体图标·阿里巴巴图标库
0***h94224 分钟前
TypeScript 与后端开发Node.js
javascript·typescript·node.js