HTML+CSS+JS实现 ❤️three 3D铅笔绘图工具特效❤️

 效果演示:  

代码目录:

主要代码实现:

部分CSS样式:

#mfPreviewBar {display: none !important;
}html,
body {position: fixed;overflow: hidden;touch-action: none;
}body {background-color: #f7f4f0;cursor: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/605067/cursor.png"), auto;font-family: "Galano Grotesque Semi Bold";margin: 0;overflow: hidden;
}button {font-family: "Galano Grotesque Semi Bold";
}.colours {bottom: 90px;display: none;left: 50%;list-style-type: none;padding-left: 0;position: absolute;transform: translateX(-50%);z-index: 10;
}@media (min-width: 1024px) {.colours {display: flex;}
}.colours li {border-radius: 50%;display: inline-block;height: 14px;margin: 0 12px;width: 14px;
}.colours li:nth-child(1) {background-color: #100c08;
}.colours li:nth-child(2) {background-color: #759BA9;
}.colours li:nth-child(3) {background-color: #77dd77;
}.colours li:nth-child(4) {background-color: #ff6961;
}.colours li:nth-child(5) {background-color: #ffd1dc;
}.pencil__border {bottom: 0;left: 0;pointer-events: none;position: absolute;right: 0;top: 0;z-index: 3;
}.pencil__border div:nth-child(1),
.pencil__border div:nth-child(2) {height: 100%;left: 0;position: absolute;top: 0;width: 100%;
}.pencil__border div:nth-child(1):before,
.pencil__border div:nth-child(1):after,
.pencil__border div:nth-child(2):before,
.pencil__border div:nth-child(2):after {background-color: #FF851B;content: "";opacity: 0.98;position: absolute;
}.pencil__border div:nth-child(1):before {height: 20px;left: 20px;top: 0;width: 100%;
}@media (min-width: 1024px) {.pencil__border div:nth-child(1):before {height: 60px;left: 55px;}
}.pencil__border div:nth-child(1):after {bottom: 60px;height: 100%;left: 0;width: 20px;
}@media (min-width: 1024px) {.pencil__border div:nth-child(1):after {bottom: 80px;width: 55px;}
}.pencil__border div:nth-child(2):before {bottom: 0;right: 20px;height: 60px;width: 100%;
}@media (min-width: 1024px) {.pencil__border div:nth-child(2):before {height: 80px;right: 55px;}
}.pencil__border div:nth-child(2):after {bottom: 0;height: 100%;right: 0;width: 20px;
}@media (min-width: 1024px) {.pencil__border div:nth-child(2):after {bottom: -60px;width: 55px;}
}.pencil__border-inner {border: solid 1px #000;border-width: 2px;border-style: solid;bottom: 58px;left: 19px;position: absolute;right: 19px;top: 19px;
}@media (min-width: 1024px) {.pencil__border-inner {bottom: 78px;left: 54px;right: 54px;top: 58px;}
}.pencil__refresh {background-color: #FCF4EA;border: none;border-radius: 50%;bottom: 18px;cursor: pointer;height: 26px;padding: 4px 1px 0px;position: absolute;left: 50%;text-align: center;transform: translateX(-50%);width: auto;z-index: 3;
}@media (min-width: 1024px) {.pencil__refresh {bottom: 27px;left: 80px;transform: none;}
}.pencil__submit {bottom: 27px;display: none;position: absolute;right: 80px;z-index: 4;
}@media (min-width: 1024px) {.pencil__submit {display: block;}
}.btn {background-color: transparent;border: none;cursor: pointer;font-size: 13px;letter-spacing: 0.15em;outline: none;padding: 5px 10px 1px 10px;text-transform: uppercase;user-select: none;-moz-user-select: none;
}

HTML代码 :

<!DOCTYPE html>
<html><head><meta charset="UTF-8"><title>自适应3D铅笔画板</title><link rel="stylesheet" href="css/style.css"></head><body><ul class="colours"><li></li><li></li><li></li><li></li><li></li></ul><div class="pencil__border"><div></div><div></div><div class="pencil__border-inner"></div></div><button class="pencil__refresh btn">刷新
</button><button class="pencil__submit btn">保存PNG</button><script src='js/three.js'></script><script src='js/MTLLoader.js'></script><script src='js/OBJLoader.js'></script><script src="js/script.js"></script></body></html>

源码获取

查看博主主页或私信博主获取

精彩推荐更新中:

HTML5大作业实战100套

  打卡 文章 更新 40  /  100天

大家可以点赞、收藏、关注、评论我啦 、需要完整文件随时联系我或交流哟~!

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/562057.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mysql linux改密码忘记了怎么办_linux上mysql改密码忘了怎么办?

解决方法&#xff1a;1、在my.cnf中&#xff0c;增加“[mysqld]”和“skip-grant-tables”2行代码&#xff0c;用于登录时跳过密码验证&#xff1b;2、启动mysql服务&#xff0c;并登录mysql&#xff1b;3、连接mysql数据库&#xff0c;使用UPDATE命令修改用户密码即可。linux上…

HTML+CSS+JS实现 ❤️透明的水滴文字背景特效❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; 部分CSS样式&#xff1a; import url(https://fonts.googleapis.com/css2?familyMontserrat:wght100&displayswap); import url(https://fonts.googleapis.com/css2?familyPoppins:wght900&d…

sqoop导出数据单mysql_sqoop导出hive表数据到mysql

直接在mysql里从本地文件系统导入数据mysql》LOAD DATA LOCAL INFILE C:\\Users\\asys\\Documents\\Tencent Files\\13174605\\FileRecv\\2015082818 INTO TABLE track_logFIELDS TERMINATED BY \t LINES TERMINATED BY \n; (注意这里文件是从linux导出的&#xff0c;以\n结尾…

HTML+CSS+JS实现 ❤️3D旋转魔方图片相册特效❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; 部分CSS样式&#xff1a; background: url(../img/s3.jpg);background-size: 100% 100%;opacity: 0.8;transform: rotateY(90deg) translateZ(200px); }.box .box1 .left {background: url(../img/s4.jp…

HTML+CSS+JS实现 ❤️响应式的幸运大转盘❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; 部分CSS样式&#xff1a; .winnerBox {max-width: 40rem;padding: 30px;margin: 30px auto;/*height: calc(100vh - 98px);*//*background-color: #fd6504 #9470fd;*/background: linear-gradient(to b…

maya python 开根号_maya python

胡泳滨MayaPython简易教程&#xff0c;如需转载&#xff0c;请标明出处地址&#xff1a;http://huyongbin.blogbus.com/c3363976/谢谢配合&#xff01;MayaPython第一篇 - 介绍大家好&#xff0c;这是一个简易的MAYA PYTHON学习教程。简易教程的目的是可以让更多的人快速掌握这…

HTML+CSS+JS实现 ❤️发光的线条爱心形状动画特效❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; 部分CSS样式&#xff1a; body {background-color: #000;margin: 0;overflow: hidden;background-repeat: no-repeat; } HTML代码 : <!DOCTYPE html> <html lang"en"><head…

mysql 钩子_面试官: 什么是 Hook (钩子) 线程以及应用场景?

一、Hook 线程介绍通常情况下&#xff0c;我们可以向应用程序注入一个或多个 Hook (钩子) 线程&#xff0c;这样&#xff0c;在程序即将退出的时候&#xff0c;也就是 JVM 程序即将退出的时候&#xff0c;Hook 线程就会被启动执行。先看一段示例代码&#xff1a;①&#xff1a;…

HTML+CSS+JS实现 ❤️H5 3D传送带视差照片特效❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; 部分CSS样式&#xff1a; html, body, .stage, .ring, .img {width: 100%;height: 100%;transform-style: preserve-3d;user-select: none; }html, body, .stage {overflow: hidden;background: #000; …

mysql慢查询日志轮转_MySQL slow log相关参数解释

slow_query_log1 #是否启用慢查询日志&#xff0c;1为启用&#xff0c;0为禁用slow_query_log_fileslow.log #指定慢查询日志文件的路径和名字&#xff0c;可使用绝对路径指定&#xff1b;默认值是主机名_slow.log&#xff0c;位于datadir目录long_query_time2 …

HTML+CSS+JS实现 ❤️h5酷炫的天体木星动画特效❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; 部分CSS样式&#xff1a; body {margin: 0;overflow: hidden;position: relative;width: 100vw;height: 100vh;background-image: url("../img/bg.jpg");background-size: cover; }canvas {d…

HTML+CSS+JS实现 ❤️彩色3D线条动画特效❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; HTML代码 : <!doctype html> <html><head><meta charset"utf-8"><title>彩带特效</title></head><body><script id"fs" type…

mysql column legnth too big for_Column length too big for column 'Flist' (max = 21845);

建表语句报如下错误&#xff1a;CREATE TABLE test_1 (Fid bigint(20) unsigned NOT NULL,Ftype tinyint(4) unsigned NOT NULL,Flist varchar(65532) DEFAULT NULL,Fstatus tinyint(3) unsigned DEFAULT 0,Ftime bigint unsigned DEFAULT 0,Faddtime bigint unsigned DEFAULT …

HTML+CSS+JS实现 ❤️卡通人物吃水果游戏❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; HTML代码 : <!DOCTYPE html> <html lang"en"><head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial…

py哪个函数可以返回输入的变量类型_[Python基础]二、pycharm,python变量

2.1 Python简介Life is short,you need Python (人生苦短&#xff0c;我用Python)解释器&#xff1a;将其他语言翻译成机器语言的工具&#xff0c;称为编译器编译器的翻译方法有两种&#xff1a;编译解释Python的设计哲学优雅明确简单Python开发者哲学&#xff1a;用一种方法&a…

HTML+CSS+JS实现 贪吃蛇游戏源码

效果演示&#xff1a; 文末获取源码 代码目录&#xff1a; 主要代码实现&#xff1a; 部分代码 : <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><meta http-equiv&qu…

mysql sql高级应用程序_mysql-sql高级应用

sql语言进阶典型操作order by- select * from play_list order bycreatetime;- select * from play_list order by bookedcount desc,createtime asc;order by语句用于根据指定的列对结果集进行排序order by语句默认按照升序对记录排序&#xff0c;使用desc则降序排序order by也…

HTML+CSS+JS实现 ❤️个人相册封面卡片❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; CSS样式&#xff1a; charset "utf-8"; import url("https://s2.pstatp.com/cdn/expire-1-M/font-awesome/4.7.0/css/font-awesome.min.css"); body {background-color: #1F1F1F;o…

python隐藏启动台_如何在Python中启动后台进程?

如何在Python中启动后台进程&#xff1f;我正在尝试将shell脚本移植到更易读的python版本。 原始shell脚本在后台使用“&#xff06;amp;”启动多个进程(实用程序&#xff0c;监视器等)。 如何在python中实现相同的效果&#xff1f; 我希望这些进程不会在python脚本完成时死掉。…

HTML+CSS+JS实现 ❤️swiper倾斜图片特效❤️

效果演示&#xff1a; 代码目录&#xff1a; 主要代码实现&#xff1a; CSS样式&#xff1a; .img_swiper {width: 800px;margin: 0 auto;position: relative; }.img {width: 100%;height: 100%; }.img_swiper .swiper-button-prev {width: 40px;height: 40px;background-im…