css做页面动画,页面未显示部分的动画不播放,当鼠标向下滑动页面出现后才展示动画。怎么做?
答案:2 悬赏:30 手机版
解决时间 2021-03-21 12:54
- 提问者网友:战魂
- 2021-03-20 16:57
css做页面动画,页面未显示部分的动画不播放,当鼠标向下滑动页面出现后才展示动画。怎么做?比如快手的页面动画。
最佳答案
- 五星知识达人网友:山君与见山
- 2021-03-20 18:31
这个css是实现不了的,你可以通过js或者jq来判断,屏幕滚动到某一点上的时候,给对应的元素加上动画类。
或者你还可以选着用现成的jQ插件来实现,页面滚到某一位置时,就会出现相应的动画,推荐你去百度搜一下 wow.js 或则 aos.js
或者你还可以选着用现成的jQ插件来实现,页面滚到某一位置时,就会出现相应的动画,推荐你去百度搜一下 wow.js 或则 aos.js
全部回答
- 1楼网友:煞尾
- 2021-03-20 19:59
<p><strong>我觉得你就是想要一个滑动门效果的源码吧,我现在就给你一个吧。</strong></p> <p><strong><!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" " <a href="http://wenwen.soso.com/z/urlalertpage.e?sp=shttp%3a%2f%2fwww.w3.org%2ftr%2fxhtml1%2fdtd%2fxhtml1-transitional.dtd%22%3e" target="_blank">http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"></a><br><html xmlns=" <a href="http://wenwen.soso.com/z/urlalertpage.e?sp=shttp%3a%2f%2fwww.w3.org%2f1999%2fxhtml%22%3e" target="_blank">http://www.w3.org/1999/xhtml"></a><br><head><br><meta http-equiv="content-type" content="text/html; charset=gb2312" /><br><title>仿网易的滑动门技术,用div+css技术实现</title><br><style type="text/css"><br><!--<br>#header {<br>background-color: #f8f4ef;<br>height: 200px;<br>width: 400px;<br>margin: 0px;<br>padding: 0px;<br>border: 1px solid #ece1d5;<br>font-family: "宋体";<br>font-size: 12px;<br>}<br>#menu {<br>margin: 0px;<br>padding: 0px;<br>list-style-type: none;<br>}<br>#menu li {<br>display: block;<br>width: 100px;<br>text-align: center;<br>float: left;<br>margin: 0px;<br>padding-top: 0.2em;<br>padding-right: 0px;<br>padding-bottom: 0.2em;<br>padding-left: 0px;<br>cursor: hand;<br>}<br>.sec1 { background-color: #ffffcc;}<br>.sec2 { background-color: #00ccff;}<br>.block { display: block;}<br>.unblock { display: none;}<br>--><br></style><br></head><br><body><br><script language=javascript><br>function secboard(n)<br>{<br>for(i=0;i<menu.childnodes.length;i++)<br>menu.childnodes[i].classname="sec1";<br>menu.childnodes[n].classname="sec2";<br>for(i=0;i<main.childnodes.length;i++)<br>main.childnodes[i].style.display="none";<br>main.childnodes[n].style.display="block";<br>}<br></script><br><div id="header"><br><ul id="menu"><br><li onmouseover="secboard(0)" class="sec2">最新新闻</li><br><li onmouseover="secboard(1)" class="sec1">最新文章</li><br><li onmouseover="secboard(2)" class="sec1">最新日志</li><br><li onmouseover="secboard(3)" class="sec1">论坛新帖</li><br></ul><br><!--内容显示区域--><br><ul id="main"><br><li class="block">第一个内容</li><br><li class="unblock">第二个内容</li><br><li class="unblock">第三个内容</li><br><li class="unblock">第四个内容</li><br></ul><br><!--内容显示区域--><br></div><br></body><br></html></strong></p>
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯