30.CSS文本悬停过渡效果

效果

在这里插入图片描述文章来源地址https://uudwc.com/A/12a5z

源码

index.html
<!doctype html>
<html>
<head>
	<meta charset="utf-8">
	<title>CSS Focus Text Hover Effects</title>
	<link rel="stylesheet" href="style.css">
</head>
<body>
	<h2>
		<span><i></i>F</span>
		<span><i></i>o</span>
		<span><i></i>c</span>
		<span><i></i>u</span>
		<span><i></i>s</span>
	</h2>
</body>
</html>



css
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: monospace;
}
body
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	

原文地址:https://blog.csdn.net/qq449245884/article/details/133152534

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

上一篇 2023年09月24日 02:45
LLM微调(一)| 单GPU使用QLoRA微调Llama 2.0实战
下一篇 2023年09月24日 02:52