- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
*滚动时的图像
看右边动人的句子。
像这样,我想强调 <p>
元素每次滚动。
也就是说,通常是 opacity: 0.3;
,当它滚动时,它切换到 opacity: 1;
从上依次。
我认为我可以使用 swiper.js 来做到这一点.
我现在就是这种感觉。请也看看右边的这个。
如果此 slider 换行达到每个 <p>
的高度并使用 preventDefault ()
停止滚动,我认为实现会如预期的那样。
jQuery(未完成,这不起作用)
$(function() {
$(".mai").scroll(function() {
onScroll();
});
onScroll();
});
function onScroll() {
$(".main-p p").each(function(i) {
$(".main-p p").eq(i).removeClass("hl"); // mean highlight
var scrPos = $(".main-p p:nth-last-child(2)");
// I want to be second from the bottom of the "visible range" of .mai, not of <p>
if(scrPos < active) {
// If hl (= active) is above the second from the bottom of the range seen in .mai
$('.mai').scroll(function(e) {
e.preventDefault();
});
} else {
$('.mai').scroll();
// I want to return the scroll, but is this correct?
}
// I want to put processing to highlight with <p>, next <p>, next <p>..
$('.main-p .active').addClass('hl');
});
}
请看右边。
突出显示在左侧图像位置滚动时应用。
但如果滚动到正确的句子位置则不适用。
就像在路上一样,如果它按下左上角的幻灯片导航,图像将正确移动到该幻灯片,但我也想突出显示句子。 (swiper设置为同步图文)
而且我发现我在这个问题的第二张图片中所说的话看起来不错(事实上,“框架中间”很好......)。 -> scrollama.js
我想按原样做这个“基本”。
它正在设置 nth-child(2)
现在,但我想把它改成这个。
换句话说,
我要
1) 滚动到正确的句子时突出显示
2) 左右同步
3)更改nth-child(2)
到 scrollama 的“基本”
我做了一个 fork ,在最新的答案中添加了图像和 scrollama。请 fork 这个。 -> JSFiddle
变长了..
对不起,无论如何谢谢你!
JSFiddle
↑ 由于某些原因代码片段不能很好地工作,所以看看 JSFiddle。
全屏 fiddle 是 here .
↓ 这里只是代码。
$(function() {
$(".mai").scroll(function() {
onScroll();
});
onScroll();
});
function onScroll() {
$(".main-p p").each(function(i) {
$(".main-p p").eq(i).removeClass("hl"); // mean highlight
var scrPos = $(".main-p p:nth-last-child(2)");
// I want to be second from the bottom of the "visible range" of .mai, not of <p>
if(scrPos < active) {
// If hl (= active) is above the second from the bottom of the range seen in .mai
$('.mai').scroll(function(e) {
e.preventDefault();
});
} else {
$('.mai').scroll();
// I want to return the scroll, but is this correct?
}
// I want to put processing to highlight with <p>, next <p>, next <p>..
$('.main-p .active').addClass('hl');
});
}
// Processing of left & right sync with swiper
var swiperCnt = new Swiper('.swiperCnt', {
direction: 'vertical',
pagination: {
el: '.swiper-pagination',
type: 'bullets',
clickable: 'true',
},
keyboard: {
enabled: true,
},
mousewheel: {
forceToAxis: true,
invert: true,
},
renderBullet: function (index, className) {
return '<span class="' + className + '">' + (index + 1) + '</span>';
},
});
var swiperP = new Swiper('.swiperP', {
direction: 'vertical',
keyboard: {
enabled: true,
},
mousewheel: {
forceToAxis: true,
invert: true,
},
});
swiperCnt.controller.control = swiperP;
swiperP.controller.control = swiperCnt;
/* The corresponding part is at the bottom too. (It is faster to count from the bottom)
(There is a mark in the comment) */
html {
font-size: 62.5%;
}
body {
font-size: 1.5rem;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: #c6d2dd;
color: white;
}
.wrap {
height: 100vh;
display: flex;
}
.left {
padding: 0 0 0 2.4rem;
}
.right {
padding: 0 4.7rem 0 6.5rem;
position: relative;
}
h2,h3,h4,h5,h6 {
display: inline;
}
.mission,
.m-p,
.concept,
.c-p,
.what,
.target,.t-p,.main-p,.nb,.nb-p,.period,.p-p,.category,.cg-p,.class,.cl-p,.release,.r-p,.nbb,.per,.cat,.cla,.rel {
display: inline-block;
}
.title {
font-size: 1.8rem;
padding: 1.8rem 0 1.7rem 0;
}
.solid-ti {
border-bottom: .1rem solid white;
margin: 0 -56.3rem 0 -2.4rem;
}
.solid-mc {
border-bottom: .1rem solid white;
margin-left: -2.4rem;
}
.solid-tm {
border-bottom: .1rem solid white;
margin-right: -4.7rem;
}
.swiper-pagination {
top: 6rem;
}
.swiper-container {
width: 69.3rem;
height: 49.6rem;
}
.swiper-slide {
display: flex;
align-items: center;
}
.swiper-slide img {
width: 69.3rem;
}
.swiper-pagination-bullet {
background: none;
font-size: 1rem;
margin-right: .5rem;
opacity: .3;
}
.swiper-pagination-bullet::before {
content: '0';
font-weight: bold;
}
.swiper-pagination-bullet:hover::before {
content: '1';
font-weight: bold;
}
.swiper-pagination-bullet-active {
background: none;
transform: scale(1);
transition-duration: .16s;
opacity: .7;
}
.swiper-pagination-bullet-active::before {
content: '1';
font-weight: bold;
}
.mis {
padding: 2.6rem 0 0.7rem 0;
}
.mission {
padding-right: 2rem;
}
.con {
padding-top: 0.7rem;
}
.concept {
padding-right: 2rem;
}
.what {
margin: 2rem 1.5rem 2.1rem 0;
display: flex;
align-items: center;
}
.what > img {
height: 2rem;
margin-right: .3rem;
}
.what > img:last-child {
margin-right: 1rem;
}
.what span {
font-size: 1.4rem;
border: .1rem solid white;
border-radius: .3rem;
margin-right: 1rem;
padding: .5rem .4rem .4rem;
}
.tar {
padding: 2.2rem 0 2rem 0;
flex-grow: 1;
}
.target {
padding-right: 1.2rem;
}
.t-p {
white-space: pre-wrap;
vertical-align: top;
}
.heartbox {
display: flex;
align-items: center;
}
.heartbox div:last-child {
user-select: none;
}
input {
opacity: 0;
}
@keyframes rubberBand {
from {
transform: scale(1, 1, 1);
}
30% {
transform: scale3d(1.15, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.15, 1);
}
50% {
transform: scale3d(1.1, 0.85, 1);
}
65% {
transform: scale3d(0.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, 0.95, 1);
}
to {
transform: scale3d(1, 1, 1);
}
}
.heart {
cursor: pointer;
width: auto;
height: 25px;
fill: #E2E2E2;
}
#fav:checked + label .heart {
fill: #e23b3b;
animation: rubberBand 0.8s;
}
/*
* from here
*/
.mai {
margin: 2.8rem 0 0 0;
height: 37.8rem;
overflow-y: scroll;
overflow-x: hidden;
-ms-overflow-style: none;
}
.mai::-webkit-scrollbar {
display: none;
}
.main-p {
white-space: pre-wrap;
opacity: 0.3;
}
.hl {
opacity: 1;
}
/*
* to here
*/
.▼ {
float: right;
margin-right: 1.5rem;
}
.under {
text-align: right;
position: absolute;
right: 4.7rem;
bottom: 2.7rem;
}
.nbb {
padding-right: 4.8rem;
}
.nb {
padding-right: .8rem;
}
.period {
padding-right: 1.6rem;
}
.top {
font-size: 1.1rem;
padding: 2.1rem 0 2rem;
text-align: right;
}
.cat {
padding-right: 1.4rem;
}
.category {
padding-right: 1.4rem;
}
.cla {
padding-right: 1.4rem;
}
.class {
padding-right: 1.4rem;
}
.rel {
padding-right: 1.4rem;
}
.release {
padding-right: 1.4rem;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.0/css/swiper.css" rel="stylesheet"/>
<!-- The corresponding part is at the bottom. (It is faster to count from the bottom)
(There is a mark in the comment) -->
<body class="wrap">
<div class="left">
<h1 class="title">title</h1>
<div class="solid-ti"></div>
<div class="swiper-pagination"></div>
<div class="swiper-container swiperCnt">
<section class="swiper-wrapper imgs">
<div class="swiper-slide"><img class="work" src="http://placehold.jp/45/1920a6/ffffff/693x350.png?text=1" /></div>
<div class="swiper-slide"><img class="work" src="http://placehold.jp/45/199fa6/ffffff/693x350.png?text=2" alt="Rollse-killer" /></div>
<div class="swiper-slide"><img class="work" src="http://placehold.jp/45/a61972/ffffff/693x350.png?text=3" alt="Rollse-data" /></div>
<div class="swiper-slide"><img class="work" src="http://placehold.jp/45/a6a619/ffffff/693x350.png?text=4" alt="Rollse-image" /></div>
</section>
</div>
<div class="mis">
<h3 class="mission">MISSION:</h3>
<p class="m-p">sample sample sample sample sample sample sample sample </p>
</div>
<div class="solid-mc"></div>
<div class="con">
<h2 class="concept">CONCEPT:</h2>
<p class="c-p">sample sample sample </p>
</div>
<div class="what">
<img src="http://placehold.jp/45/d4d4d4/d4d4d4/28x20.png?text=_" alt="2nd" /><img src="http://placehold.jp/45/d4d4d4/d4d4d4/20x20.png?text=_" alt="ai" /><img src="http://placehold.jp/45/d4d4d4/d4d4d4/20x20.png?text=_" alt="vw" />
<span>sample</span>
<span>sample</span>
<span>sample</span>
<span>sample</span>
<span>sample</span>
</div>
</div>
<div class="right">
<div class="top">
<div class="cat">
<h5 class="category">CATEGORY:</h5>
<p class="cg-p">sample sample </p>
</div>
<div class="cla">
<h5 class="class">CLASS:</h5>
<p class="cl-p">sample </p>
</div>
<div class="rel">
<h5 class="release">RELEASE:</h5>
<p class="r-p">sample </p>
</div>
</div>
<div class="heartbox">
<div class="tar">
<h3 class="target">TARGET:</h3>
<p class="t-p">sample sample sample sample sample sample sample sample sample sample sample
</p>
</div>
<div>
<input type="checkbox" name="fav" id="fav">
<label for="fav">
<svg class="heart" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 37 32" style="enable-background:new 0 0 37 32;" xml:space="preserve">
<path class="st0" d="M27,0c-2.5,0-4.9,0.9-6.7,2.6C19.6,3.2,19,4,18.5,4.7C18,4,17.4,3.2,16.7,2.6C14.9,0.9,12.5,0,10,0
C4.5,0,0,4.5,0,10c0,3.7,1.2,6.7,3.9,9.8c3.9,4.6,13.9,11.6,14.3,11.9c0.1,0.1,0.2,0.1,0.3,0.1s0.2,0,0.3-0.1
c0.4-0.3,10.4-7.3,14.3-11.9c2.7-3.2,3.9-6.1,3.9-9.8C37,4.5,32.5,0,27,0z"/></svg>
</label>
</div>
</div>
<div class="solid-tm"></div>
<!--
from here
-->
<div class="mai swiper-container swiperP">
<section class="main-p swiper-wrapper"><p class="active swiper-slide">Here is the relevant part. It can scroll.</p>
<p class="swiper-slide">sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample </p>
<p class="swiper-slide">sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample </p>
<p class="swiper-slide">sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample </p>
<p class="swiper-slide">sample sample sample sample sample sample sample sample sample sample sample sample sample sample </p>
<p class="swiper-slide">sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample </p>
<p class="swiper-slide">sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample </p>
<p class="swiper-slide">sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample sample </p>
<p class="swiper-slide">sample sample sample sample sample sample sample </p>
</section>
</div>
<!--
to here
-->
<img src="http://placehold.jp/45/d4d4d4/d4d4d4/14x12.png?text=_" alt="▼" class="▼" width="14" />
<div class="under">
<div class="nbb">
<h4 class="nb">N.B.:</h4>
<p class="nb-p">sample </p>
</div>
<div class="per">
<h4 class="period">PERIOD:</h4>
<p class="p-p">sample </p>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.0/js/swiper.js"></script>
你能帮我一下吗?
最佳答案
另一个更新:
之前的帖子更新,可以查看here
右侧(文本)滚动的核心代码:
var that;
var i = 0;
var j = $(".main-p > p").length - 1;
$('.mai').bind('mousewheel', function(e) {
if (e.originalEvent.wheelDelta < 0) {
//scroll down
i++;
if (i >= j) {
i = j;
}
if (i <= j) {
$(".main-p > p").each(function(i) {
if ($(this).hasClass('active')) {
if ($(this).hasClass(i)) {
if (i < j) {
that = $(this).next();
} else {
that = $(this);
}
}
}
$(this).removeClass('active');
});
$(that).addClass('active');
}
} else {
//scroll up
i--;
if (i <= 0) {
i = 0;
}
if (i >= 0) {
$(".main-p > p").each(function(i) {
if ($(this).hasClass('active')) {
if (i > 0) {
that = $(this).prev();
} else {
that = $(this);
}
}
$(this).removeClass('active');
});
$(that).addClass('active');
}
}
swiperCnt.slideTo(i);
//prevent page fom scrolling
return false;
});
解释:i++
或 i--
使用 if >=
向下/向上滚动/>
或 <=
/<
是否检测越界。并分别回应。 .next()
和 .prev
用于突出显示滚动上的上一个或下一个元素。
对于左侧(img)滚动:
swiperCnt.on('scroll', function() {
onScroll();
});
执行 onScroll()
功能。
关于javascript - 用鼠标滚轮切换元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55203700/
我有一个 html 格式的表单: 我需要得到 JavaScript在value input 字段执行,但只能通过表单的 submit .原因是页面是一个模板所以我不控制它(不能有
我管理的论坛是托管软件,因此我无法访问源代码,我只能向页面添加 JavaScript 来实现我需要完成的任务。 我正在尝试用超链接替换所有页面上某些文本关键字的第一个实例。我还根据国家/地区代码对这些
我正在使用 JS 打开新页面并将 HTML 代码写入其中,但是当我尝试使用 document.write() 在新页面中编写 JS 时功能不起作用。显然,一旦看到 ,主 JS 就会关闭。用于即将打开的
提问不是为了解决问题,提问是为了更好地理解系统 专家!我知道每当你将 javascript 代码输入 javascript 引擎时,它会立即由 javascript 引擎执行。由于没有看过Engi
我在一个文件夹中有两个 javascript 文件。我想将一个变量的 javascript 文件传递到另一个。我应该使用什么程序? 最佳答案 window.postMessage用于跨文档消息。使
我有一个练习,我需要输入两个输入并检查它们是否都等于一个。 如果是 console.log 正则 console.log false 我试过这样的事情: function isPositive(fir
我正在做一个Web应用程序,计划允许其他网站(客户端)在其页面上嵌入以下javascript: 我的网络应用程序位于 http://example.org 。 我不能假设客户端网站的页面有 JQue
目前我正在使用三个外部 JS 文件。 我喜欢将所有三个 JS 文件合而为一。 尽一切可能。我创建 aio.js 并在 aio.js 中 src="https://code.jquery.com/
我有例如像这样的数组: var myArray = []; var item1 = { start: '08:00', end: '09:30' } var item2 = {
所以我正在制作一个 Chrome 扩展,它使用我制作的一些 TamperMonkey 脚本。我想要一个“主”javascript 文件,您可以在其中包含并执行其他脚本。我很擅长使用以下行将其他 jav
我有 A、B html 和 A、B javascript 文件。 并且,如何将 A JavaScript 中使用的全局变量直接移动到 B JavaScript 中? 示例 JavaScript) va
我需要将以下整个代码放入名为 activate.js 的 JavaScript 中。你能告诉我怎么做吗? var int = new int({ seconds: 30, mark
我已经为我的 .net Web 应用程序创建了母版页 EXAMPLE1.Master。他们的 I 将值存储在 JavaScript 变量中。我想在另一个 JS 文件中检索该变量。 示例1.大师:-
是否有任何库可以用来转换这样的代码: function () { var a = 1; } 像这样的代码: function () { var a = 1; } 在我的浏览器中。因为我在 Gi
我收到语法缺失 ) 错误 $(document).ready(function changeText() { var p = document.getElementById('bidp
我正在制作进度条。它有一个标签。我想调整某个脚本完成的标签。在找到可能的解决方案的一些答案后,我想出了以下脚本。第一个启动并按预期工作。然而,第二个却没有。它出什么问题了?代码如下: HTML:
这里有一个很简单的问题,我简单的头脑无法回答:为什么我在外部库中加载时,下面的匿名和onload函数没有运行?我错过了一些非常非常基本的东西。 Library.js 只有一行:console.log(
我知道 javascript 是一种客户端语言,但如果实际代码中嵌入的 javascript 代码以某种方式与在控制台上运行的代码不同,我会尝试找到答案。让我用一个例子来解释它: 我想创建一个像 Mi
我如何将这个内联 javascript 更改为 Unobtrusive JavaScript? 谢谢! 感谢您的回答,但它不起作用。我的代码是: PHP js文件 document.getElem
我正在寻找将简单的 JavaScript 对象“转储”到动态生成的 JavaScript 源代码中的最优雅的方法。 目的:假设我们有 node.js 服务器生成 HTML。我们在服务器端有一个对象x。
我是一名优秀的程序员,十分优秀!