Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

98sfsdf8

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    I have changed this so an item can always be visible, even when searched and filtered, but it seems a bit weird to me https://codepen.io/jackpallot/pen/PooYqgO. You just need to add a class of "sticky" to the items you want to keep.
  2. Like
    I'm not sure what you mean. Do you want the boxes to stay in place when you search, like the effect from the filter buttons?
  3. Like
    Is this closer to what you're after https://codepen.io/jackpallot/pen/PooYqgO?
    I have adjusted some of the CSS and opacity settings so I could test it a bit easier.
  4. Like
    98sfsdf8 reacted to Jack in Adding Search function to Isotope's "hideReveal" plugin   
    You probably need to recalculate the Isotope layout in your debounce function. Does the layout sort itself out again when you resize the screen?
  5. Like
    98sfsdf8 got a reaction from teodora in swapping two using class properties querySelector   
    thanks @@teodora works great!
  6. Like
    98sfsdf8 reacted to teodora in swapping two using class properties querySelector   
    Hi, here is a jsfiddle for you: https://jsfiddle.net/teodora84/j5crkd4L/
     
    I have commented it, hope all makes sense
  7. Like
    They have wrote a simple function that detects the window width and height, then sets the video values accordingly. Here is their function, using a combination of vanilla JS and jQuery:
    CoubEmbed.prototype.resizePlayer = function() { var height, width; console.log("CoubEmbed", "Resize."); width = $(window).width(); height = $(window).height(); this.viewer.css({ width: width, height: height }); return $('object').attr('width', width).attr('height', height); }; You can do the same with a few lines of JavaScript:
    (function() { var width = window.innerWidth, height = window.innerHeight, player = document.getElementById('coubVideo'); player.style.width = width + 'px'; player.style.height = height + 'px'; }()); I have created an example, here: http://jsfiddle.net/LyndseyB/sbLoxp2w/
     
    Hope this helps

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.