抖⾳上⽤记事本编写爱⼼⼩程序教程本⽂实例为⼤家分享了抖⾳上⽤记事本编写爱⼼⼩程序的具体代码,供⼤家参考,具体内容如下
先上⼀波效果图:
⼀颗旋转的⼩⼼⼼
七⼣的前⼀天晚上,当我满怀期待的把这颗“爱⼼”展⽰给我⼥朋友的时候,我以为她会very..very..happy 但是..她和我说你给我颗⼤蒜⼲什么啊..
Why are you giving me a garlic..
也就是那个时候,我突然觉得这真的像⼀颗⼤蒜哎
好啦,不多说了。直接上源代码:
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
@keyframes ani{
from{
transform:rotateY(0deg) rotateX(0deg);
}
to{
transform:rotateY(360deg) rotateX(360deg);
}
}
body{
perspective:1000px;
}
#heart{写文章的小程序
position:relative;
height:200px;
width:150px;
margin:200px auto;
animation:ani 5s linear infinite;
transform-style:preserve-3d;
}
.line{
position:absolute;
height:200px;
width:150px;
border:2px solid red;
border-left:0;
border-bottom:0;
border-radius:50% 50% 0/50% 40% 0;
}
#word{
font-family:"⾪书";
font-size:1.3em;
color:red;
position:absolute;
top: 80px;
left:22px;
font-weight:bold;
}
</style>
</head>
<body>
<div id="heart">
<div id="word">I LOVE You</div>
</div>
<script>
var ElementById("heart");
var html="";
for(var i=0;i<36;i++){
html+="<div class='line' style='transform:rotateY("+i*10+"deg) rotateZ(45deg) translateX(25px)'></div>";
}
heart.innerHTML += html;
</script>
</body>
</html>
运⾏这串代码也是⾮常简单,打开记事本,复制粘贴,将后缀名改为.html。
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论