css 根据窗口和滚动滑入和滑出文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 根据窗口和滚动滑入和滑出文本相关的知识,希望对你有一定的参考价值。

$(window).scroll(function() {

    // calculate the percentage the user has scrolled down the page
    var scrollPercent = 300 * $(window).scrollTop() / ($(document).height() - $(window).height());
    var scrollPercent2 = 400 * $(window).scrollTop() / ($(document).height() - $(window).height());

    $('.animation-element').css('right', scrollPercent +"%");
  	$('.animation-element-2').css('right', scrollPercent2 +"%");

});
<h1 class="animation-element custom-font"> TESORO </h1>
<h1 class="animation-element-2 custom-font-2"> COLLECTIVE </h1>
/* --------------------------- */
/* HOME PAGE ANIMATION STYLES  */
/* --------------------------- */

/* TESORO TEXT POSITIONING (plz don't edit) */
.animation-element {
  position: fixed;
  right: 0%;
}
  
/* COLLECTIVE POSITIONING (plz don't edit) */
.animation-element-2 {
  position: fixed;
  right: 0%;
}
 
/* TESORO TEXT FONT STYLES */
h1.custom-font {
  top: 150px;
  font-size: 10em;
  margin-right: -100px;
}
  
/* COLLECTIVE TEXT FONT STYLES */
h1.custom-font-2 {
  top: 300px;
  font-size: 10em;
  margin-right: -500px;
}

以上是关于css 根据窗口和滚动滑入和滑出文本的主要内容,如果未能解决你的问题,请参考以下文章

overridePendingTransition 用于平滑地滑入和滑出活动

jquery tabslideout 插件并想检测 div 何时滑入和滑出

如何让 UIView / Menu 滑入和滑出? (使用 C# 而不是 Swift 的 Xamarin IOS)

html 使用translate3d for mobile进行侧导航滑入和滑出

CSS滑入和滑出动画溢出问题

重新渲染 HTML 元素定位在 Javascript 幻灯片动画内的窗口调整大小