Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged transitions

Rss Feed Group items tagged

Vernon Fowler

CSS3 Glow Tabs - 2 views

  •  
    The tabs in this demo are image-less tabs with 4 different CSS3 enhancements: Rounded Corners (border-radius) Box Shadow (bottom of inactive tabs) Transitions (the glow on hover) Gradients (the active tab)
Luciano Ferrer

Top 4 Free CSS Generators Online - Sepia River: theCreativeflow - 1 views

  •  
    "http://css3generator.com/ » The drop-down list says "Choose Something". Choices include: shadows, transitions, even transform and @font-face! It has an option for border-radius, but if that's the only thing you need, there's the quick and dirty: http://border-radius.com/ » Super simple, uber-easy-to-use, just does border-radius. What more can I say? http://www.colorzilla.com/gradient-editor/ » Sleek, Photoshop-like gradient editor that spits out cross-browser CSS. Fancy - with live preview and the like. Resist the urge to add gradients to everything you do. http://www.cssbuttongenerator.com/ » Comes with some nice default palettes, but fully customizable with your own color values. Sleek color-picker and sliders to make it how you want it, plus a link to a more advanced button generator. I've definitely been making more buttons since this baby came online :)"
dennisvdb

Taking PHP Seriously - 0 views

  • Slack is in the later stages of a transition to HHVM, and the early stages of a transition to Hack, and we are optimistic that they will let us produce better software, faster
Ashley Wilson

Dispelling Myths and Smooth Transition from Traditional to Modern BI - 0 views

  •  
    While there are multiple benefits of modern BI, yet many organizations are not in a situation to make a shift from traditional to modern BI. In this blog, we have aimed to kick out the myths of modern BI so that implementing it can be a smoother process.
Ashley Wilson

Get Excellent Business Results with DevOps, AI, and Data Science - 0 views

  •  
    AI and machine learning (ML) technologies are rapidly transforming business functions, including software development. In its pursuit of efficiency, the industry has gradually transitioned away from the traditional Software Development Life Cycle (SDLC) and toward an agile development environment. DevOps has become an industry standard over the last decade.
mukeshram

Remote Work Success Stories: How These Companies Made It Work - 0 views

  •  
    This blog is about remote work success stories, revealing how companies achieved seamless transitions. Explore the strategies implemented by these industry leaders to make remote work efficient and productive. Learn from real-world examples and discover the benefits of outsourcing to a reliable Software Outsourcing Company for streamlined operations. Gain insights into creating a remote-friendly work environment and fostering collaboration. Embrace the lessons from successful remote work stories to optimize your approach. For more information visit https://acquaintsoft.com/blog/remote-work-success-stories
Krishang Technolab

Key considerations for a flawless migration to Shopify - 0 views

  •  
    Planning a migration to Shopify? Make sure to consider these key factors for a successful transition! We know a lot goes into migrating a website from one platform to another but a flawless migration isn't impossible as well. We intend to guide you through everything you need to know about Shopify migration and present a Shopify migration checklist to help you understand how a migrate to Shopify could be smooth and flawless.
ecfdata

Essential Azure Updates You Can't Afford to Miss in the Year - ECF Data - 0 views

  •  
    Are you keeping tempo with the speedy evolution of Microsoft Azure? Discover the today's updates and improvements which might be reshaping cloud computing in our weblog, "Essential Azure Updates You Can't Afford to Miss inside the Year." Embrace the destiny of cloud computing with our complete manual to the important updates and tendencies shaping Microsoft Azure in 2024. As Azure maintains to conform at an astonishing pace, it's imperative to stay knowledgeable about the trendy improvements that may power your commercial enterprise forward. Explore key subjects including: 1. Artificial Intelligence (AI): Delve into the state-of-the-art AI answers and advancements in healthcare, including Microsoft's modern records and AI platform, Fabric, and the groundbreaking Copilot function. 2. Cloud Spend Optimization: Learn how Microsoft is revolutionizing cloud fee control with AI-powered chat skills and customized suggestions thru Azure Advisor. 3. Azure Ending Support in 2024: Stay beforehand of product lifecycle changes with insights into Microsoft merchandise drawing near stop-of-guide, and discover how ECF Data's Azure Support Services can help navigate the transition. Whether you're a seasoned Azure professional or clearly beginning your cloud adventure, our weblog gives useful insights and suggestions to help you maximize the potential of Microsoft Azure. Don't pass over out on the opportunity to elevate your Azure revel in and pressure innovation for your employer. Read our weblog these days and release the overall power of Azure in 2024 and past. CONTACT ECF DATA
Krishang Technolab

CMS Migration Guide: A Breakdown of the Process [2025] - 0 views

  •  
    Migrating your Content Management System (CMS) is a pivotal step toward enhancing your website's performance, usability, and scalability. This blog provides a step-by-step breakdown of the CMS Migration process, including assessing your current CMS, planning the migration, ensuring seamless data transfer, and optimizing your new platform for improved functionality. Whether you're upgrading for better features or switching to align with business goals, this guide ensures a smooth and successful transition, minimizing risks and maximizing benefits.
Krishang Technolab

Magento to Shopify Migration : The Ultimate Guide [2025] - 0 views

  •  
    Discover the ultimate guide for a smooth transition from Magento to Shopify in 2025! This comprehensive resource offers step-by-step instructions, expert tips, and best practices to ensure your migration is hassle-free. Whether you're a seasoned e-commerce professional or a newcomer, you'll find valuable insights to help you retain your data, optimize your store's performance, and enhance customer experience.
Vernon Fowler

@font-face gotchas « Paul Irish - 1 views

  • There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well.
  • And.. regarding @font-face syntax I now recommend the bulletproof smiley variation over the original bulletproof syntax.
  • @font-face { font-family: 'Graublau Web'; src: url('GraublauWeb.eot'); src: local('?'), url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype'); }
  • ...5 more annotations...
  • in Webkit (Chrome/Safari), applying font-weight:bold to faux-bold some @font-face'd text will not succeed. Same applies for font-style:italic.
  • text-transform doesn't play well with @font-face in current implementations.
  • @font-face doesnt play nice with css transitions.
  • If a @font-face declaration is within a media query @media screen { ..., it will fail in Firefox.
  • SVG Fonts - Currently SVG is the only way to get webfonts working on iPhone and iPad.
  •  
    "There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well. "
creatskills

30+ Best new web development tools in 2016 - 0 views

  •  
    In 2016 the web development tools are very exciting and make your working on HTML CSS and other platforms or languages of website very easy, like animations, transition, library, newsletters, boxes, games, wire frames and other important thinks now very easier than easy to do in very short time and short efforts, so every designer should also learn trends of web design in 2016 and this best new tools of web design in 2016.
Maxim Djuliy

20 stunning examples of CSS 3D transforms - 0 views

  •  
    Rounded corners, gradients and drop shadows are well known features of CSS3, but beyond these there lie CSS transitions, transforms and animations. In combination they create effects never before achievable. CSS 3D transforms are smooth, hardware accelerated and simple to implement, with browsers taking on what would be very difficult perspective calculations.
misha-infotech

Transition from Old to New Product with Product Re-Engineering - 0 views

  •  
    Software Product Re-Engineering- Enhanced Flexibility for Improved Performance With the growth in the technology and increasing dependency on computers.
Vernon Fowler

The top 10 CSS3 techniques | Feature | .net magazine - 3 views

  •  
    Denise Jacobs reveals her top tips on how to use the most exciting CSS3 properties - and provide fallbacks for older browsers
Vernon Fowler

Fun with Easing - 2 views

  •  
    "Show each Easing Method and how it looks."
‹ Previous 21 - 40 of 48 Next ›
Showing 20 items per page