Skip to main content

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

Rss Feed Group items tagged

anonymous

Zend Framework -ZendView - 0 views

    • anonymous
       
      An dieser Stelle kann man mehrere Views für eine Action erzeugen. Variablen müssen dann mit ->setVariables(array()) oder ->setVariable(Einzelwert an den passenden View übergeben werden.
  • $view = new ViewModel(); // this is not needed since it matches "module/controller/action" $view->setTemplate('content/article/view'); $articleView = new ViewModel(array('article' => $article)); $articleView->setTemplate('content/article'); $primarySidebarView = new ViewModel(); $primarySidebarView->setTemplate('content/main-sidebar'); $secondarySidebarView = new ViewModel(); $secondarySidebarView->setTemplate('content/secondary-sidebar'); $sidebarBlockView = new ViewModel(); $sidebarBlockView->setTemplate('content/block'); $secondarySidebarView->addChild($sidebarBlockView, 'block'); $view->addChild($articleView, 'article') ->addChild($primarySidebarView, 'sidebar_primary') ->addChild($secondarySidebarView, 'sidebar_secondary'); return $view;
Saif Shuvo

Professional Web Design & Development Curriculum - 0 views

Lesson: 01 (Dreamweaver Basics & HTML) Introducing Dreamweaver, Elements, Attributes, Table, List, Forms, Formatting, Styles, Image, Hyperlinks. Head, Meta, Scripts, Layout, Fonts, URL- encode ...

webdesign web development

started by Saif Shuvo on 07 Jan 17 no follow-up yet
Vernon Fowler

Your Body Text Is Too Small - 0 views

  • Some examples of sans-serif fonts that work well for large body text include Atlas Grotesk, Futura, Lato, Maison Neue, Real Text, Roboto, and Suisse Int’l.
  • Some examples of serif fonts that work well for large body text include Equity, Franziska, Leitura News, Merriweather, Miller, PT Serif, and Tisa.
  • better to optically select a font size according to near-finalized colors, or in different color scenarios
  • ...6 more annotations...
  • a better starting point would be 20px on small desktop displays and greater. We should only have to resort to 16px for body copy on very small mobile devices
  • down to the eye again to optically adjust the letter-spacing and font size together
  • the optimal line length, or number of characters per line (CPL) in typography is around 55 to 75
  • line height should also be relative to the font size as it scales up for larger displays
  • This is not about having the biggest body text, because biggest isn’t best. It’s about optimizing for the best reading experience you can possibly give your users
  • sites that have adopted bigger body text even at small desktop or laptop resolutions such as 1440 x 900. They go from 20px all the way up to 58px!
Vernon Fowler

Web Designer Notebook » How to use Modernizr - 1 views

  • Modernizr doesn’t actually magically enable these properties for browsers that don’t support them. It just tells the page whether that feature is supported on the browser the visitor is using or not.
  • To install Modernizr, download the file from this page. Then, on your site’s head tag, add a link to the file. For example: ?1<script src="js/modernizr-1.0.min.js"></script> The second step is to include on your html tag a class of “no-js”: ?1<html class="no-js"> Why add this tag? Because that will be the default state of the page. If JavaScript (js) isn’t on, then Modernizr won’t work at all (and probably other features of your site won’t work either…), so it’s good that we have a fallback for that case. If JavaScript is indeed enabled, once that page is loaded on the browser, that class will be replaced dynamically and it may look something like this: ?1<html class="js canvas canvastext geolocation rgba hsla no-multiplebgs borderimage borderradius boxshadow opacity no-cssanimations csscolumns no-cssgradients no-cssreflections csstransforms no-csstransforms3d no-csstransitions  video audio cufon-active fontface cufon-ready">
  •  
    "There is a tool that came to make our lives as progressive web designers a bit easier: Modernizr. In this short tutorial, learn how to apply this handy script to maximum effect on your sites."
DJ XC

How to correctly insert a Flash into XHTML » La Trine - 0 views

  • Final Solution The complete code will then look like this (example + validator): <!--[if !IE]> --> <object type="application/x-shockwave-flash" data="movie.swf" width="300" height="135"> <!-- <![endif]--> <!--[if IE]> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="300" height="135"> <param name="movie" value="movie.swf" /> <!--><!--dgx--> <param name="loop" value="true" /> <param name="menu" value="false" /> <p>This is <b>alternative</b> content.</p> </object> <!-- <![endif]--> Maybe it's not a brilliantly elegant solution, but it's only truly functional
  •  
    Solucion para insertar Flash y que funcione en todos los navegadores
Vernon Fowler

Reference - Complete Web Upgrade: ga.js / dc.js to analytics.js - Google Analytics - Go... - 0 views

  • ga('send', 'event', 'category', 'action', 'opt_label', opt_value, {'nonInteraction': 1});
  • ga('require', 'displayfeatures');
  • Demographics
wetechsoftware

Top 10 software development companies in Vietnam 2024 - 3 views

image

started by wetechsoftware on 23 Jan 24 no follow-up yet
Herb Tucker

PHP: Expressions - Manual - 0 views

  • (scalar values are values that you can't 'break' into smaller pieces, unlike arrays, for instance
  • Expressions are the most important building stones of PHP. In PHP, almost anything you write is an expression
  • The simplest yet most accurate way to define an expression is "anything that has a value"
  • ...16 more annotations...
  • PHP also supports two composite (non-scalar) types: arrays and objects. Each of these value types can be assigned into variables or returned from functions.
  • PHP is an expression-oriented language
  • Since assignments are parsed in a right to left order, you can also write '$b = $a = 5'
  • and that's the value of the assignment itself
  • A very common type of expressions are comparison expressions. These expressions evaluate to either FALSE or TRUE. PHP supports > (bigger than), >= (bigger than or equal to), == (equal), != (not equal), < (smaller than) and <= (smaller than or equal to). The language also supports a set of strict equivalence operators: === (equal to and same type) and !== (not equal to or not same type). These expressions are most commonly used inside conditional execution, such as if statements.
  • and is assigned back into $a,
  • The last example of expressions we'll deal with here is combined operator-assignment expressions
  • Adding 3 to the current value of $a can be written '$a += 3'
  • This means exactly "take the value of $a, add 3 to it, and assign it back into $a"
  • Any two-place operator can be used in this operator-assignment mode, for example '$a -= 5' (subtract 5 from the value of $a), '$b *= 7' (multiply the value of $b by 7), etc.
  • There is one more expression that may seem odd if you haven't seen it in other languages, the ternary conditional operator:
  • If the value of the first subexpression is TRUE (non-zero), then the second subexpression is evaluated, and that is the result of the conditional expression. Otherwise, the third subexpression is evaluated, and that is the value
  • Some expressions can be considered as statements. In this case, a statement has the form of 'expr ;' that is, an expression followed by a semicolon. In '$b = $a = 5;', '$a = 5' is a valid expression, but it's not a statement by itself. '$b = $a = 5;' however is a valid statement.
  • One last thing worth mentioning is the truth value of expressions. In many events, mainly in conditional execution and loops, you're not interested in the specific value of the expression, but only care about whether it means TRUE or FALSE. The constants TRUE and FALSE (case-insensitive) are the two possible boolean values.
  • Throughout the rest of this manual we'll write expr to indicate any valid PHP expression.
  • Functions are expressions with the value of their return value.
  •  
    Expressions defined and discussed with highlighting
Aaron Rylaarsdam

Identifying Your Audience - AT&T Small Business InSite - 0 views

  • <iframe leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scrolling="No" frameborder="0" height="1" width="1" src="http://view.atdmt.com/iaction/aveamm_SOArticlesDetailsTemplate_10"></iframe> Rate this content login to rate Identifying Your Audience Before designing the first Web page, it's vital to know who you are trying to reach. This single detail will chart the entire development course, from the site's content to its functionality. Defining and understanding your prospective audience increases the likelihood of user attraction and retention.
  • Before designing the first Web page, it's vital to know who you are trying to reach. This single detail will chart the entire development course, from the site's content to its functionality. Defining and understanding your prospective audience increases the likelihood of user attraction and retention.
  • Primary market research consists of personal interviews, questionnaires, focus groups and surveys. When putting together your own Target Audience Profile, use these guidelines:
  • ...6 more annotations...
  • Demographics. Regardless of the assessment tool you use, questions first should address basic demographic information. Prior to conducting a survey or focus group, spend some time online. The U.S. Department of Commerce publishes the Country and City Data Book which captures hard statistics for all U.S. states, counties, and cities with a population of 25,000 or more. Then, compile a questionnaire to address market segmentation along specific criteria:
  • Age: Users' wants and needs tend to change based on their generation. Knowing the average age range of potential users can help you design and market the site to meet that group's expectations. Gender: Male and female users often differ when it comes to what they value in a Web site. Studies show the factors that motivate women to visit or purchase from a particular site don't necessarily inspire men to do the same. Knowing gender predilections at the outset can impact the entire Web design process. Education: Data regarding potential users' educational background will help the Web developer determine design and content. In general, a site's format should target the average likely visitor, rather than aim at high or low ends of the academic experience curve. Geographic location: Where the target audience calls home drives the Web page content. For instance, urbanites living in a densely populated northeastern U.S. city likely will have different needs and preferences than their rural counterparts.
  • Marital status: Married Internet users typically access different retail/service sites than do single people. A TAP will help ascertain which group comprises your largest consumer demographic, with your Web site following this direction. Occupation: Although exceptions invariably exist, Web sites servicing "blue-collar" consumers will differ in style and content from those catering to professionals and "white-collar" workers. By the same token, retirees usually will have different preferences than consumers still in the throes of career building. Income level: A company targeting consumers who are apt to purchase luxury goods and services will require a Web site that differs considerably from a discount retailer's Internet page. Nationality: Businesses trading in goods and services for an ethnically diverse target market may need to consider multilingual content, as well as adjustments in design and format to fit cultural standards. Social class: A consumer's perception of his or her social status impacts preferences in goods and services - even when individual income does not reach this level.
  • Psychographics. Once you've finished with demographic-based questions, you're ready to take the line of inquiry a bit further. The science of psychographics (also known as "enriching characteristics") addresses why consumers act as they do. So, while demographics offer a general outline of your customer pool, psychographics brings critical characteristics of your target audience into sharper focus. Employing a psychographic methodology means devising queries about lifestyles, attitudes, values, beliefs, purchasing habits and other qualitative criteria. Although possibilities are numerous, key questions can help you and your designer hone and refine your Web site. Depending on your business, you might ask, for instance:
  • Do you consider yourself conservative or liberal? Is it important to care of the environment? What are your hobbies? Interests? Are you family-oriented or a loner? What type of entertainment do you prefer (cinema, theater, symphony, etc.)? How many books do you read monthly? What magazines do you read?
  • When you shop, which is most important - friendly staff, nice surroundings, good prices or convenient location? Do you shop for fun, because you must, or to relieve stress? Do you purchase (our) company's product because of quality, ease of use, price or availability? Do you patronize our competitor because their product is cheaper, product quality is better, service is friendlier, the store is nicer, or returns are simpler? Do you go online to work, shop, do research, play games, or e-mail? Do you think the Internet is tough going or easy to navigate? Do you prefer retail/service Web sites that are easy to navigate, easy to read, picture-heavy, or text heavy?
  •  
    Good article from AT&T explaining various demographics and psychographics to categories who target audience is.
Jochen Burkhard

20 Open Courseware Classes on Web Design Worth Bookmarking - 10 views

  •  
    One of the easiest and cheapest ways to learn web design is via open courseware classes. You can get some top notch instruction from universities all for free just by using their open courseware classes. Some of the most respected universities like the University of California at Berkeley, The University of Washington and MIT offer classes on web design and development. These classes cover the same material that you would learn in one of these university classrooms; yet you pay no tuition and can study in your own home at your own pace. Take a look at these 20 classes on web design; all of them are free!
  •  
    One of the easiest and cheapest ways to learn web design is via open courseware classes. You can get some top notch instruction from universities all for free just by using their open courseware classes. Some of the most respected universities like the University of California at Berkeley, The University of Washington and MIT offer classes on web design and development. These classes cover the same material that you would learn in one of these university classrooms; yet you pay no tuition and can study in your own home at your own pace. Take a look at these 20 classes on web design; all of them are free!
seoagencycalgary

BEST SEO COMPANY IN BRISBANE - 0 views

Brisbane is known for its scenic beauty, being home to teams in national leagues, and its rich culture and art scene. But besides being a hub for tourists and sports enthusiasts, its stron...

SEOCOMPANY SEOAGENCY SEO

started by seoagencycalgary on 31 Jul 23 no follow-up yet
Anaya Khan

Fail to generate sales lead? Here are top reasons why - 0 views

What is sales lead?  A sales lead is a hired dedicated dot net developers potential customer or prospect that has shown an interest in a company's product or service, and has provided con...

dedicated dot net developers in Liverpool

started by Anaya Khan on 13 Jan 23 no follow-up yet
abubakr_hussain

lightspiners - Google Search - 0 views

    • abubakr_hussain
       
      nice
    • abubakr_hussain
       
      nice
  • #lightspinners | WEBSTA - Instagram Analyticshttps://websta.me/tag/lightspinnersCachedRakhi friendship band fidget spinners celebrate ur this rakhi with this band
  •  
    lightspinner studio
dennisvdb

Remove Spaces from File Names - 0 views

  • # Replace spaces in file names with "." for f in *\ *; do mv "$f" "${f// /.}"; done
wetechsoftware

Software Outsourcing - 0 views

image

started by wetechsoftware on 27 Jan 24 no follow-up yet
seoagencycalgary

Collaborate with the most trusted Digital Marketing Agency in Calgary - 0 views

Digital marketing is very necessary for any business. Without having a backup in a reliable digital marketing agency in Calgary, your business will never reach its highest potential. ...

DIGITALMARKETINGAGENCY SEOAGENCY SEOCOMPANY

started by seoagencycalgary on 28 Jul 23 no follow-up yet
seoagencycalgary

Rely on the best digital marketing company for SEO services in Calgary - 0 views

SEO is an integral part of any online business. In this digital era, it is crucial to make a strong online presence which can be done with the right SEO services in Calgary. SEO servi...

SEO SEOSERVICES SEOCOMPANY SEOAGENCY

started by seoagencycalgary on 26 Jul 23 no follow-up yet
seoagencycalgary

Looking for high-quality Local SEO Services in Calgary - 0 views

If you own a small-scale local business, SEO can help you reach your target audience. With the help of local SEO, you can improve your online presence and be one step ahead of yo...

seoservices localseorservices digitalmrketing

started by seoagencycalgary on 27 Jul 23 no follow-up yet
magecompinc

How to Create Helper Class in Magento 2 - 0 views

  •  
    Magento 2 Helper Class is used to add functionality to several features across the Magento site. Magento 2 Helper Class can be called in controllers, models, views, templates, etc. In today's tutorial, we will learn How to Create a Helper Class in Magento 2.
1 - 20 of 452 Next › Last »
Showing 20 items per page