css实现鼠标悬浮图片清晰效果代码
代码语言:html
所属分类:悬停
代码描述:css实现鼠标悬浮图片清晰效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> img { --s: 250px; /* the size of the image */ --b: 8px; /* the border thickness*/ --g: 14px; /* the gap */ --c: #4ECDC4; /* the color */ width: var(--s); aspect-ratio: 1; outline: calc(var(--s)/2) solid #0009; outline-offset: calc(var(--s)/-2); cursor: pointer; transition: 0.3s; } img:hover { outline: var(--b) solid var(--c); outline-offset: var(--g); } img + img { border-radius: 50%; } .........完整代码请登录后点击上方下载按钮下载查看
网友评论0