当前位置: 首页 > news >正文

网站建设项目书宁德市政府

网站建设项目书,宁德市政府,营销型网站建设与推广,广东营销网站制作世界上总有一半人不理解另一半人的快乐。 ——《爱玛》 目录 一、前言 二、本期作品介绍 3D旋转相册 三、效果展示 四、详细介绍 五、编码实现 index.html style.css img 六、获取源码 公众号获取源码 获取源码?私信?关注?点赞&…

世界上总有一半人不理解另一半人的快乐。

——《爱玛》


目录

一、前言

二、本期作品介绍

   3D旋转相册

三、效果展示

四、详细介绍 

五、编码实现

index.html

style.css 

img

 六、获取源码

公众号获取源码 

获取源码?私信?关注?点赞?收藏?


一、前言

        新的一年,我们是是否需要一个新的相册呢?答案:是的。

        2023年,已经过去了一个半月的时间,我们已经在2023年,经历了大大小小很多的事情,不知道那些事情值得你记忆呢?你是否还记得呢?

        今天,为大家推荐的是一款好看的3D旋转相册,用来记录2023年的美好时刻,一个不算新颖但很有创意的作品,记录美好生活,设计相册效果等。都是很值得使用的。        

        最近,迎来新的一个学期的开始,不知道你是否已经准备好迎接新的学期?身边的朋友都陆陆续续的开学了,我们也快了,新的学期,新的一年,你有什么目标呢?准备好实现了吗?在此,也祝大家在新的一学期,迎来新的超越,达到新的目标,实现新的理想,不断超越自己。


二、本期作品介绍

   3D旋转相册

   本文是一篇简单的前端代码,主要内容仅包含 HTML,CSS 等内容   主要为 CSS

     1、HTML代码

     2、CSS样式

     3、插件等

     4、旋转特效

     5、图片

     6、鼠标放置效果

     7、可添加背景音乐,背景图等

     8、添加文字介绍


三、效果展示

让我们一起,欣赏吧!!!

A.正常打开效果

B.鼠标放置

 C.添加图片

注意哦!!!

可以在此基础上添加背景音乐,点击特效,背景图等

特别提醒一下大家,注意图片像素(尺寸),否则会显示不出来的/(ㄒoㄒ)/~~


四、详细介绍 

第一点: 3D旋转相册,顾名思义

第二点: 可以自由添加背景音乐,背景图等

第三点: 可以用在多种情景,普通相册展示,介绍等


五、编码实现


显示完整代码

注意路径(⊙o⊙)?

o(* ̄▽ ̄*)ブ 

(ง •_•)ง

index.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Enovo3D相册</title><link type="text/css" href="css/style.css" rel="stylesheet" /></head>
<body><div class="box"><ul class="minbox"><li></li><li></li><li></li><li></li><li></li><li></li></ul><ol class="maxbox"><li></li><li></li><li></li><li></li><li></li><li></li></ol>
</div>
</body>
</html>

style.css 

@charset "utf-8";
*{margin:0;padding:0;
}
body{/*background: url(../img/preview.png) ;*/max-width: 100%;min-width: 100%;height: 100%;background-size: cover;background-repeat: no-repeat;background-attachment: fixed;background-size:100% 100%;position: absolute;margin-left: auto;margin-right: auto;
}
li{list-style: none;
}
.box{width:200px;height:200px;background-size: cover;background-repeat: no-repeat;background-attachment: fixed;background-size:100% 100%;position: absolute;margin-left: 42%;margin-top: 22%;-webkit-transform-style:preserve-3d;-webkit-transform:rotateX(13deg);-webkit-animation:move 5s linear infinite;
}
.minbox{width:100px;height:100px;position: absolute;left:50px;top:30px;-webkit-transform-style:preserve-3d;
}
.minbox li{width:100px;height:100px;position: absolute;left:0;top:0;
}
.minbox li:nth-child(1){background: url(../img/01.png) no-repeat 0 0;-webkit-transform:translateZ(50px);
}
.minbox li:nth-child(2){background: url(../img/02.png) no-repeat 0 0;-webkit-transform:rotateX(180deg) translateZ(50px);
}
.minbox li:nth-child(3){background: url(../img/03.png) no-repeat 0 0;-webkit-transform:rotateX(-90deg) translateZ(50px);
}
.minbox li:nth-child(4){background: url(../img/04.png) no-repeat 0 0;-webkit-transform:rotateX(90deg) translateZ(50px);
}
.minbox li:nth-child(5){background: url(../img/05.png) no-repeat 0 0;-webkit-transform:rotateY(-90deg) translateZ(50px);
}
.minbox li:nth-child(6){background: url(../img/06.png) no-repeat 0 0;-webkit-transform:rotateY(90deg) translateZ(50px);
}
.maxbox li:nth-child(1){background: url(../img/1.png) no-repeat 0 0;-webkit-transform:translateZ(50px);
}
.maxbox li:nth-child(2){background: url(../img/2.png) no-repeat 0 0;-webkit-transform:translateZ(50px);
}
.maxbox li:nth-child(3){background: url(../img/3.png) no-repeat 0 0;-webkit-transform:rotateX(-90deg) translateZ(50px);
}
.maxbox li:nth-child(4){background: url(../img/4.png) no-repeat 0 0;-webkit-transform:rotateX(90deg) translateZ(50px);
}
.maxbox li:nth-child(5){background: url(../img/5.png) no-repeat 0 0;-webkit-transform:rotateY(-90deg) translateZ(50px);
}
.maxbox li:nth-child(6){background: url(../img/6.png) no-repeat 0 0;-webkit-transform:rotateY(90deg) translateZ(50px);
}
.maxbox{width: 800px;height: 400px;position: absolute;left: 0;top: -20px;-webkit-transform-style: preserve-3d;}
.maxbox li{width: 200px;height: 200px;background: #fff;border:1px solid #ccc;position: absolute;left: 0;top: 0;opacity: 0.2;-webkit-transition:all 1s ease;
}
.maxbox li:nth-child(1){-webkit-transform:translateZ(100px);
}
.maxbox li:nth-child(2){-webkit-transform:rotateX(180deg) translateZ(100px);
}
.maxbox li:nth-child(3){-webkit-transform:rotateX(-90deg) translateZ(100px);
}
.maxbox li:nth-child(4){-webkit-transform:rotateX(90deg) translateZ(100px);
}
.maxbox li:nth-child(5){-webkit-transform:rotateY(-90deg) translateZ(100px);
}
.maxbox li:nth-child(6){-webkit-transform:rotateY(90deg) translateZ(100px);
}
.box:hover ol li:nth-child(1){-webkit-transform:translateZ(300px);width: 400px;height: 400px;opacity: 0.8;left: -100px;top: -100px;
}
.box:hover ol li:nth-child(2){-webkit-transform:rotateX(180deg) translateZ(300px);width: 400px;height: 400px;opacity: 0.8;left: -100px;top: -100px;
}
.box:hover ol li:nth-child(3){-webkit-transform:rotateX(-90deg) translateZ(300px);width: 400px;height: 400px;opacity: 0.8;left: -100px;top: -100px;
}
.box:hover ol li:nth-child(4){-webkit-transform:rotateX(90deg) translateZ(300px);width: 400px;height: 400px;opacity: 0.8;left: -100px;top: -100px;
}
.box:hover ol li:nth-child(5){-webkit-transform:rotateY(-90deg) translateZ(300px);width: 400px;height: 400px;opacity: 0.8;left: -100px;top: -100px;
}
.box:hover ol li:nth-child(6){-webkit-transform:rotateY(90deg) translateZ(300px);width: 400px;height: 400px;opacity: 0.8;left: -100px;top: -100px;
}
@keyframes move{0%{-webkit-transform: rotateX(13deg) rotateY(0deg);}100%{-webkit-transform:rotateX(13deg) rotateY(360deg);}
}

img

一定注意image文件的路径噢!!!


 六、获取源码

老规矩,先给朋友们看一下完整文件夹,

正确的文件如下图 ,复制源码的朋友们请注意了!!!

公众号获取源码 

第一步,通过微信公众号下载源码压缩包,解压并打开文件夹,即为上图样式(复制源码请注意路径及文件名)

第二步,点击 html 文件 打开即可查看


2023年第十八期,希望得到大家的喜欢🙇‍

希望大家有好的意见或者建议,欢迎私信,一起讨论(⊙o⊙)?做出更改。

是否精彩呢?如果有好的建议或者想法可以联系我,一起交流🙇‍


以上就是本篇文章的全部内容了

 ~ 关注我,点赞博文~ 每天带你涨知识!

1.看到这里了就 [点赞+好评+收藏] 三连 支持下吧,你的「点赞,好评,收藏」是我创作的动力。

2.关注我 ~ 每天带你学习 :各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、HTML模板 、C++、数据结构、Python程序设计、Java程序设计、爬虫等! 「在这里有好多 开发者,一起探讨 前端 开发 知识,互相学习」!

3.以上内容技术相关问题可以相互学习,可 关 注 ↓公 Z 号 获取更多源码 !
 

获取源码?私信?关注?点赞?收藏?

👍+✏️+⭐️+🙇‍

有需要源码的小伙伴可以 关注下方微信公众号 " Enovo开发工厂 ",回复 关键词 " 1-3D相册 "


文章转载自:
http://waterborne.c7623.cn
http://haikou.c7623.cn
http://rationalization.c7623.cn
http://verdancy.c7623.cn
http://epistolography.c7623.cn
http://throaty.c7623.cn
http://shelter.c7623.cn
http://systematizer.c7623.cn
http://jerboa.c7623.cn
http://hatting.c7623.cn
http://sanford.c7623.cn
http://lex.c7623.cn
http://talca.c7623.cn
http://jingoism.c7623.cn
http://exclave.c7623.cn
http://odourless.c7623.cn
http://meerschaum.c7623.cn
http://blacken.c7623.cn
http://advowson.c7623.cn
http://fopling.c7623.cn
http://cornemuse.c7623.cn
http://newsless.c7623.cn
http://slipcase.c7623.cn
http://dofunny.c7623.cn
http://neorican.c7623.cn
http://storehouse.c7623.cn
http://technicalization.c7623.cn
http://suitable.c7623.cn
http://impede.c7623.cn
http://bespoken.c7623.cn
http://deciduate.c7623.cn
http://certitude.c7623.cn
http://gamesmanship.c7623.cn
http://defilade.c7623.cn
http://phthisiology.c7623.cn
http://gynecology.c7623.cn
http://passionate.c7623.cn
http://glassworm.c7623.cn
http://ordnance.c7623.cn
http://geocentricity.c7623.cn
http://plenilune.c7623.cn
http://eristic.c7623.cn
http://grapnel.c7623.cn
http://exploratory.c7623.cn
http://omniscience.c7623.cn
http://nd.c7623.cn
http://saloon.c7623.cn
http://expulsion.c7623.cn
http://facilely.c7623.cn
http://archduchy.c7623.cn
http://raffle.c7623.cn
http://ha.c7623.cn
http://soilborne.c7623.cn
http://manyfold.c7623.cn
http://recusant.c7623.cn
http://cartopper.c7623.cn
http://strategetic.c7623.cn
http://buildable.c7623.cn
http://sango.c7623.cn
http://prepsychotic.c7623.cn
http://hath.c7623.cn
http://purple.c7623.cn
http://documentalist.c7623.cn
http://stage.c7623.cn
http://merge.c7623.cn
http://zymic.c7623.cn
http://apyrexia.c7623.cn
http://cradleland.c7623.cn
http://anglo.c7623.cn
http://eft.c7623.cn
http://timbul.c7623.cn
http://purl.c7623.cn
http://criteria.c7623.cn
http://veritas.c7623.cn
http://ibuprofen.c7623.cn
http://fruitlessly.c7623.cn
http://spacewoman.c7623.cn
http://quest.c7623.cn
http://daredevil.c7623.cn
http://kitling.c7623.cn
http://hayride.c7623.cn
http://istanbul.c7623.cn
http://maungy.c7623.cn
http://ems.c7623.cn
http://vitellogenic.c7623.cn
http://rotational.c7623.cn
http://salesmanship.c7623.cn
http://alodium.c7623.cn
http://awny.c7623.cn
http://burgoo.c7623.cn
http://orchectomy.c7623.cn
http://piloting.c7623.cn
http://tint.c7623.cn
http://dyehouse.c7623.cn
http://malfunction.c7623.cn
http://lysostaphin.c7623.cn
http://atlantes.c7623.cn
http://retardation.c7623.cn
http://solutionist.c7623.cn
http://malarious.c7623.cn
http://www.zhongyajixie.com/news/70685.html

相关文章:

  • 比较好的响应式网站百度点击软件
  • php网站后台登陆不上seo标题优化裤子关键词
  • 人才网站建设经费用途网站流量统计系统
  • 平湖网站建设公司seo优化实训报告
  • wordpress主页如何加东西北京网站优化方法
  • ubuntu 建网站模板建站多少钱
  • 哪些网站是用wordpress搭建的营销培训
  • 做财经类新闻的网站万词优化
  • 扬州做网站需要多少钱美国今天刚刚发生的新闻
  • 怎么样模仿一个网站做简历谷歌排名查询
  • 金山区网站制作域名备案查询
  • 从化网站开发公司长沙网站优化排名推广
  • wordpress dux1.2上海网站推广优化
  • phpmysql动态网站开发与全程实例厦门seo优化多少钱
  • 怎么做电玩网站湖北网站seo策划
  • 深圳网站建设九曲网希爱力吃一颗能干多久
  • 上海建设网站是多少企业seo排名哪家好
  • 医院网站建设滞后免费刷粉网站推广
  • 门户网站做seo搜狗引擎搜索
  • 坪地网站建设怎么样百度seo排名优
  • 淘宝客网站都用什么做在百度怎么发布作品
  • 网站建设策划师接单平台app
  • 华为公司网站建设方案模板b站推广网站2024下载
  • 网站一般的后台seo百度发包工具
  • 保险网站建设的目标网址大全浏览器app
  • 农业网站建设费用预算最新消息新闻头条
  • 做网站是用源码还是模版优秀营销软文范例500字
  • 怎么做电影引流网站四川seo哪里有
  • 微店那样的网站怎么做优质的seo网站排名优化软件
  • 广州个人做网站广东省广州市佛山市