A-Find 4 websites each has one dominant design aspect (Content, Technology, Visual, Economics) – state the reasons for choice
B- Find a balanced website – state the reasons for your choice.
calss note
web designing is affected by 4 major aspects:
Contents: main functionality of content is to inform or to persuade visitor to the website
Technology: to implement functionality of the website. Ex: user registration, etc
Visuals: provide the form of the site (outline of the site)
Economics: represent the economic ramification of building the site – if there is not clear purpose of why the site, it is generally not built
Two common types of websites:
Visual-driven website: a website that mainly depends on fancy graphics and animated images and logos without keeping the real purpose of the site in consideration
Technology-Driven website: a website that mainly depends on technology and ignoring the visualization aspect. usually those sites need plug-in to be installed by browser to work.
Last Completed Projects
topic title | academic level | Writer | delivered |
---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });