交互式爱情
给你写了个小例子,直接复制过去就能看了~<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .myBtn{ width: 80px; height: 36px; background-color:#20A0FF; color: white; border: none; cursor: pointer; /*渐变效果,可以删掉这句话试试*/ transition:all 0.8s; } .myBtn:hover{ /*鼠标悬浮效果*/ /*阴影*/ box-shadow: 5px 5px 5px grey; /*发光*/ background-color: #58B7FF; } </style></head><body> <button class="myBtn">举个栗子</button></body></html>