分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 前端开发

css3实现图片的变大变小

发布时间:2023-09-06 01:28责任编辑:彭小芳关键词:暂无标签

主要是使用 css3的animation,scale等于1是原图大小,大于1是把图片放大,小于1 是把图片缩小。animation-delay用来延迟5秒触发这个动画

<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Document</title><style>* {margin: 0;padding: 0;}body {width: 100%;height: 100%;overflow: hidden;}.outBox,.innerBox {width: 100%;height: 100%;}.outBox {overflow: hidden;}.innerBox {width: 100%;height: 100%;animation: changeBiger 4s linear forwards;animation-delay: 5s;-webkit-animation-delay: 5s;transform: scale(1.08);}@keyframes changeBiger {0% {transform: scale(1.08);}100% {transform: scale(1);}}.innerBox {background-size: cover;background-repeat: no-repeat;background-position: center center;background-image: url(https://ss1.baidu.com/9vo3dSag_xI4khGko9WTAnF6hhy/image/h%3D220/sign=627199341fce36d3bd0484320af13a24/ae51f3deb48f8c54ad2aa0c130292df5e1fe7f66.jpg);}</style></head><body><div class="outBox"><div class="innerBox"><!--<img src="https://ss1.baidu.com/9vo3dSag_xI4khGko9WTAnF6hhy/image/h%3D220/sign=627199341fce36d3bd0484320af13a24/ae51f3deb48f8c54ad2aa0c130292df5e1fe7f66.jpg" >--></div></div></body></html>

  

css3实现图片的变大变小

原文地址:http://www.cnblogs.com/lxk0301/p/7930237.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved