tag attribute css

attribute - CSS: posición fija en el eje x pero no y?



title html css (16)

¿Hay alguna forma de arreglar una posición solo en el eje x? Entonces, cuando un usuario se desplaza hacia arriba, la etiqueta div se desplazará hacia arriba con ella, pero no de lado a lado.


Acabo de agregar posición: absoluta y eso resolvió mi problema.


Actualizó la secuencia de comandos para verificar la posición de inicio:

function float_horizontal_scroll(id) { var el = jQuery(id); var isLeft = el.css(''left'') !== ''auto''; var start =((isLeft ? el.css(''left'') : el.css(''right'')).replace("px", "")); jQuery(window).scroll(function () { var leftScroll = jQuery(this).scrollLeft(); if (isLeft) el.css({ ''left'': (start + leftScroll) + ''px'' }); else el.css({ ''right'': (start - leftScroll) + ''px'' }); });

}


En div para padres puedes agregar

overflow-y: scroll; overflow-x: hidden;


Es una técnica simple usando el script también. Puede consultar una demostración here también.

JQuery

$(window).scroll(function(){ $(''#header'').css({ ''left'': $(this).scrollLeft() + 15 //Why this 15, because in the CSS, we have set left 15, so as we scroll, we would want this to remain at 15px left }); });

CSS

#header { top: 15px; left: 15px; position: absolute; }

Crédito de actualización : @ PierredeLESPINAY

Como se comentó, para que el script admita los cambios en el CSS sin tener que recodificarlos en el script. Puedes usar lo siguiente.

var leftOffset = parseInt($("#header").css(''left'')); //Grab the left position left first $(window).scroll(function(){ $(''#header'').css({ ''left'': $(this).scrollLeft() + leftOffset //Use it later }); });

Demo :)


Este es un hilo muy antiguo, pero he encontrado una solución pura de CSS para esto usando algo de anidación creativa. No era fanático del método jQuery en absoluto ...

Violín aquí: https://jsfiddle.net/4jeuv5jq/

<div id="wrapper"> <div id="fixeditem"> Haha, I am a header. Nah.. Nah na na na </div> <div id="contentwrapper"> <div id="content"> Lorem ipsum..... </div> </div> </div> #wrapper { position: relative; width: 100%; overflow: scroll; } #fixeditem { position: absolute; } #contentwrapper { width: 100%; overflow: scroll; } #content { width: 1000px; height: 2000px; }



La solución de Starx fue extremadamente útil para mí. Pero tuve algunos problemas cuando traté de implementar una barra lateral de desplazamiento vertical con él. Aquí estaba mi código inicial, basado en lo que Starx escribió:

function fix_vertical_scroll(id) { $(window).scroll(function(){ $(id).css({ ''top'': $(this).scrollTop() //Use it later }); }); }

Es ligeramente diferente de la solución de Starx, porque creo que su código está diseñado para permitir que un menú flote horizontalmente en lugar de verticalmente. Pero eso es solo un lado. El problema que tuve con el código anterior es que en muchos navegadores, o dependiendo de la carga de recursos de la computadora, los movimientos del menú serían entrecortados, mientras que la solución inicial de CSS fue agradable y fluida. Atribuyo esto a que los navegadores son más lentos en disparar eventos de javascript que al implementar css.

Mi solución alternativa a este problema de picado es establecer el marco en fijo en lugar de absoluto, luego cancelar los movimientos horizontales utilizando el método de Starx.

function float_horizontal_scroll(id) { jQuery(window).scroll(function(){ jQuery(id).css({ ''left'': 0 - jQuery(this).scrollLeft() }); }); } #leftframe { position:fixed; width: 200; }

Podrías decir que todo lo que hago es cambiar los picos de desplazamiento vertical por agitación de desplazamiento horizontal. Pero el problema es que el 99% del desplazamiento es vertical, y es mucho más molesto cuando está en picado que cuando se utiliza el desplazamiento horizontal.

Aquí está mi publicación relacionada sobre este tema, si aún no agotó la paciencia de todos: arreglar un menú en una dirección en jquery


La solución muy fácil es:

window.onscroll = function (){ document.getElementById(''header'').style.left= 15 - (document.documentElement.scrollLeft + document.body.scrollLeft)+"px"; }


Me doy cuenta de que este hilo es muy viejo, pero me ayudó a encontrar una solución para mi proyecto.

En mi caso, tenía un encabezado que nunca deseaba tener menos de 1000 px de ancho, encabezado siempre en la parte superior, con contenido que podría ir ilimitado a la derecha.

header{position:fixed; min-width:1024px;} <header data-min-width="1024"></header> $(window).on(''scroll resize'', function () { var header = $(''header''); if ($(this).width() < header.data(''min-width'')) { header.css(''left'', -$(this).scrollLeft()); } else { header.css(''left'', ''''); } });

Esto también debe manejar cuando su navegador es menor que sus encabezados min-width


Me encontré con esta publicación en busca de una buena manera de mantener mi encabezado / barra de navegación centrada y receptiva a los cambios de tamaño.

//CSS .nav-container { height: 60px; /*The static height*/ width: 100%; /*Makes it responsive to resizing the browser*/ position: fixed; /*So that it will always be in the center*/ } //jQuery $(window).scroll(() => { if ($(document).scrollTop() < 60) { $(''.nav-container'').css(''top'', $(document).scrollTop() * -1) } })

A medida que nos desplazamos, la barra se mueve hacia arriba desde la pantalla. Si te desplazas hacia la izquierda / derecha, permanecerá fijo.


No, no es posible con CSS puro. Ese tipo de posicionamiento corrige el elemento en la ventana gráfica. Sugeriría simplemente fijar el elemento a uno de los lados de la ventana gráfica (es decir, arriba, abajo, izquierda o derecha) para que no interfiera con otro contenido.


Sí, en realidad puedes hacer eso solo usando CSS ...

body { width:100%; margin-right: 0; margin-left:0; padding-right:0; padding-left:0; }

Dime si funciona



Si su bloque se posicionó originalmente como estático, es posible que desee probar esto

$(window).on(''scroll'', function () { var $w = $(window); $(''.position-fixed-x'').css(''left'', $w.scrollLeft()); $(''.position-fixed-y'').css(''top'', $w.scrollTop()); });

.container { width: 1000px; } .position-fixed-x { position: relative; } .position-fixed-y { position: relative; } .blue-box { background:blue; width: 50px; height: 50px; } .red-box { background: red; width: 50px; height: 50px; }

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <div class="container"> <div class="position-fixed-y red-box"> </div> The pattern of base pairs in the DNA double helix encodes the instructions for building the proteins necessary to construct an entire organism. DNA, or deoxyribonucleic acid, is found within most cells of an organism, and most organisms have their own unique DNA code. One exception to this is cloned organisms, which have the same exact DNA code as their parents do. <div class="position-fixed-x blue-box"> </div> DNA strands are composed of millions of sub-units, called nucleotides. Each nucleotide contains a 5-carbon sugar, a phosphate group and a nitrogen base. There are four different variations of the nitrogen base group, responsible for all of the variation between two different DNA strands. The four different variations are called adenine, guanine, cytosine and thymine, but they are typically abbreviated and only referred to by their first letter. The sequence of these different nitrogen bases makes up the code of the DNA. The DNA strand splits in two, and forms two different DNA strands during cell replication. However, sometimes this process is not perfect, and mistakes occur. These mistakes may change the way an organism is constructed or functions. When this happens, it is called a mutation. These mutations can be helpful or harmful, and they are usually passed on to the organism’s offspring. The traits of a living thing depend on the complex mixture of interacting components inside it. Proteins do much of the chemical work inside cells, so they largely determine what those traits are. But those proteins owe their existence to the DNA (deoxyribonucleic acid), so that is where we must look for the answer. The easiest way to understand how DNA is organized is to start with its basic building blocks. DNA consists of four different sugars that interact with each other in specific ways. These four sugars are called nucleotide bases and have the names adenine (A), thymine (T), cytosine (C) and guanine (G). Think of these four bases as letters in an alphabet, the alphabet of life! If we hook up these nucleotides into a sequence--for example, GATCATCCG--we now have a little piece of DNA, or a very short word. A much longer piece of DNA can therefore be the equivalent of different words connected to make a sentence, or gene, that describes how to build a protein. And a still longer piece of DNA could contain information about when that protein should be made. All the DNA in a cell gives us enough words and sentences to serve as a master description or blueprint for a human (or an animal, a plant, or a microorganism). Of course, the details are a little more complicated than that! In practice, active stretches of DNA must be copied as a similar message molecule called RNA. The words in the RNA then need to be "read" to produce the proteins, which are themselves stretches of words made up of a different alphabet, the amino acid alphabet. Nobel laureates Linus Pauling, who discerned the structure of proteins, and James Watson and Francis Crick, who later deciphered the helical structure of DNA, helped us to understand this "Central Dogma" of heredity--that the DNA code turns into an RNA message that has the ability to organize 20 amino acids into a complex protein: DNA -> RNA -> Protein. To understand how this all comes together, consider the trait for blue eyes. DNA for a blue-eyes gene is copied as a blue-eyes RNA message. That message is then translated into the blue protein pigments found in the cells of the eye. For every trait we have--eye color, skin color and so on--there is a gene or group of genes that controls the trait by producing first the message and then the protein. Sperm cells and eggs cells are specialized to carry DNA in such a way that, at fertilization, a new individual with traits from both its mother and father is created. </div>


Suena como si necesitaras usar la posición: fijo y luego establece la posición superior en un porcentaje y la posición izquierda y derecha en una unidad fija.


$(window).scroll(function(){ $(''#header'').css({ ''left'': $(this).scrollLeft() + 15 //Why this 15, because in the CSS, we have set left 15, so as we scroll, we would want this to remain at 15px left }); });

Gracias