用vue写一个可自动随机旋转 点击放大图片 背景是烟花的页面
时间: 2023-12-17 12:02:42 浏览: 77
图片自动旋转
好的,这是一个比较有趣的页面,我可以给你提供一个基础的 Vue 组件代码,你可以根据你的需求进行修改和完善。
```html
<template>
<div class="fireworks-page">
<div class="fireworks-img" :style="{transform: 'rotate(' + rotation + 'deg)'}" @click="zoomIn"></div>
</div>
</template>
<script>
export default {
data() {
return {
rotation: 0, // 初始化旋转角度
isZoomedIn: false // 控制是否放大图片
}
},
mounted() {
// 自动随机旋转
setInterval(() => {
this.rotation = Math.floor(Math.random() * 360);
}, 1000);
},
methods: {
zoomIn() {
this.isZoomedIn = true;
}
}
}
</script>
<style>
.fireworks-page {
background: url('fireworks.jpg') no-repeat center center fixed;
background-size: cover;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.fireworks-img {
background: url('image.jpg') no-repeat center center fixed;
background-size: cover;
width: 200px;
height: 200px;
border-radius: 50%;
transition: all 0.3s ease-in-out;
cursor: pointer;
}
.fireworks-img:hover {
transform: scale(1.1);
}
.fireworks-img.zoomed-in {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
z-index: 999;
width: 80%;
height: 80%;
border-radius: 0;
}
</style>
```
上面的代码实现了一个带有自动随机旋转和点击放大的页面,这个页面有一个背景图片是烟花,还有一个圆形的图片,当鼠标悬停在图片上时,图片会放大,当点击图片时,图片会变为全屏显示,并且没有圆角,这是一个很基础的 Vue 组件,你可以根据你的需求进行修改和完善。
阅读全文