用vue写一个浪漫的表白页面详细代码
时间: 2023-06-09 20:04:18 浏览: 149
程序员浪漫表白网页代码
好的,这是一个比较简单的浪漫表白页面的Vue实现代码。其中包括背景、输入框、按钮、动画等元素,可以给用户带来浪漫与惊喜的体验。
```
<template>
<div class="romantic-page">
<div class="background">
<img src="https://example.com/romantic-bg.jpg" />
</div>
<div class="content">
<h1>Dear, 我爱你</h1>
<p>在这个世界上,只要有你,就足够了</p>
<textarea placeholder="请输入你的留言"></textarea>
<button @click="submitMessage()">发表我的爱</button>
</div>
</div>
</template>
<script>
export default {
data() {
return {
message: "",
animate: false,
};
},
methods: {
submitMessage() {
// 发送留言
console.log(this.message);
// 开始动画
this.animate = true;
},
},
};
</script>
<style scoped>
.romantic-page {
position: relative;
width: 100%;
height: 100%;
}
.background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -1;
background-size: cover;
background-position: center;
filter: blur(3px);
}
.content {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
h1 {
font-size: 48px;
color: #fff;
margin-bottom: 16px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
p {
font-size: 24px;
color: #fff;
margin-bottom: 32px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
textarea {
width: 80%;
height: 120px;
margin-bottom: 32px;
font-size: 16px;
padding: 8px;
border-radius: 16px;
border: none;
box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
button {
background-color: #fff;
border: none;
border-radius: 50px;
padding: 12px 32px;
color: #f07b6c;
font-size: 18px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
cursor: pointer;
transition: all 0.3s;
}
button:hover {
background-color: #f07b6c;
color: #fff;
transform: translateY(-5px);
box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
button:focus {
outline: none;
}
.animate {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-size: 64px;
color: #f07b6c;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
animation: beat 1s infinite;
}
@keyframes beat {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
</style>
```
注意:本代码仅供参考,具体实现需要根据具体需求进行相应的修改和调整。
阅读全文